Dynomotion

Group: DynoMotion Message: 3251 From: himykabibble Date: 1/21/2012
Subject: Twiddling Bits in dotNet
Brad,

You seem to have a fencepose error in the I/O handling in dotNet. I have two buttons that control I/Os for Mist and Flood coolant, defined as follows:

KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", KMotion_dotNet.IO_TYPE.DIGITAL_OUT));

Each button has an LED in it. The button click event handlers use the following to set or clear the I/O bits:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);

This much works properly, and the bits toggle as they should.

My 100mSec status loop does the following to get current status

KMController.UpdateMainStatus();

I then have functions that return the current status of the coolant I/Os using:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);

These values are used to control the LEDs in the two buttons.

Here's the problem: I can correctly control the I/O pins. But, if I turn on the Mist, the Mist status comes back as false, and the Flood status comes back as true. To get the correct status back, I have to do the following:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);

Regards,
Ray L.
Group: DynoMotion Message: 3252 From: Brad Murry Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet

That is right Ray, the issue is with the MainStatus interop.  Kevin pointed it out a while back as well.

 

I think I have it fixed, but I need to test and upload new source.

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Saturday, January 21, 2012 9:29 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Twiddling Bits in dotNet

 

 

Brad,

You seem to have a fencepose error in the I/O handling in dotNet. I have two buttons that control I/Os for Mist and Flood coolant, defined as follows:

KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant", KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant", KMotion_dotNet.IO_TYPE.DIGITAL_OUT));

Each button has an LED in it. The button click event handlers use the following to set or clear the I/O bits:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);

This much works properly, and the bits toggle as they should.

My 100mSec status loop does the following to get current status

KMController.UpdateMainStatus();

I then have functions that return the current status of the coolant I/Os using:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);

These values are used to control the LEDs in the two buttons.

Here's the problem: I can correctly control the I/O pins. But, if I turn on the Mist, the Mist status comes back as false, and the Flood status comes back as true. To get the correct status back, I have to do the following:

KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);

Regards,
Ray L.

Group: DynoMotion Message: 3253 From: himykabibble Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet
Brad/Tom,

OK, at least I've got a work-around, so not a biggie.

I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.

If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.

Any idea where I should look?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> it out a while back as well.
>
>
>
> I think I have it fixed, but I need to test and upload new source.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> Behalf Of himykabibble
> Sent: Saturday, January 21, 2012 9:29 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> You seem to have a fencepose error in the I/O handling in dotNet. I have two
> buttons that control I/Os for Mist and Flood coolant, defined as follows:
>
> KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
>
> Each button has an LED in it. The button click event handlers use the
> following to set or clear the I/O bits:
>
> KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
>
> This much works properly, and the bits toggle as they should.
>
> My 100mSec status loop does the following to get current status
>
> KMController.UpdateMainStatus();
>
> I then have functions that return the current status of the coolant I/Os
> using:
>
> KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
>
> These values are used to control the LEDs in the two buttons.
>
> Here's the problem: I can correctly control the I/O pins. But, if I turn on
> the Mist, the Mist status comes back as false, and the Flood status comes
> back as true. To get the correct status back, I have to do the following:
>
> KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
>
> Regards,
> Ray L.
>
Group: DynoMotion Message: 3254 From: himykabibble Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet
Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad/Tom,
>
> OK, at least I've got a work-around, so not a biggie.
>
> I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
>
> If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
>
> Any idea where I should look?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > it out a while back as well.
> >
> >
> >
> > I think I have it fixed, but I need to test and upload new source.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > Behalf Of himykabibble
> > Sent: Saturday, January 21, 2012 9:29 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> >
> > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> >
> > Each button has an LED in it. The button click event handlers use the
> > following to set or clear the I/O bits:
> >
> > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> >
> > This much works properly, and the bits toggle as they should.
> >
> > My 100mSec status loop does the following to get current status
> >
> > KMController.UpdateMainStatus();
> >
> > I then have functions that return the current status of the coolant I/Os
> > using:
> >
> > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> >
> > These values are used to control the LEDs in the two buttons.
> >
> > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > the Mist, the Mist status comes back as false, and the Flood status comes
> > back as true. To get the correct status back, I have to do the following:
> >
> > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> >
> > Regards,
> > Ray L.
> >
>
Group: DynoMotion Message: 3255 From: Tom Kerekes Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet
Hi Ray,
 
Are you terminating all your Timers and Threads that might be accessing the board before closing?
 
Regards
TK

Group: DynoMotion Message: 3256 From: himykabibble Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

I believe so, but I'll make a second run through and check.

This is *really* close to working....

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> Are you terminating all your Timers and Threads that might be accessing the board before closing?
>  
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Saturday, January 21, 2012 9:29 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad/Tom,
> >
> > OK, at least I've got a work-around, so not a biggie.
> >
> > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> >
> > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> >
> > Any idea where I should look?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > it out a while back as well.
> > >
> > >
> > >
> > > I think I have it fixed, but I need to test and upload new source.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > Behalf Of himykabibble
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > >
> > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > >
> > > Each button has an LED in it. The button click event handlers use the
> > > following to set or clear the I/O bits:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > >
> > > This much works properly, and the bits toggle as they should.
> > >
> > > My 100mSec status loop does the following to get current status
> > >
> > > KMController.UpdateMainStatus();
> > >
> > > I then have functions that return the current status of the coolant I/Os
> > > using:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > >
> > > These values are used to control the LEDs in the two buttons.
> > >
> > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > back as true. To get the correct status back, I have to do the following:
> > >
> > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > >
> > > Regards,
> > > Ray L.
> > >
> >
>
Group: DynoMotion Message: 3257 From: himykabibble Date: 1/21/2012
Subject: Re: Twiddling Bits in dotNet
Nope, I'm stopping all timers, and killing all threads I've created.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>
Group: DynoMotion Message: 3258 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

For what it’s worth, I can stop and start MM and the html app without crashing anything.

 

-Brad

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Saturday, January 21, 2012 11:15 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Nope, I'm stopping all timers, and killing all threads I've created.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>

Group: DynoMotion Message: 3259 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Ray,

 

Also worth noting is that I will occasionally get a rogue KmotionServer.exe process if I have a kflop plugged in with an app connected and my cpu hibernates.

 

When this happens, I usually need to restart as the process cannot be terminated in the task manager.

 

 

-Brad Murry

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Brad Murry
Sent: Sunday, January 22, 2012 2:16 AM
To: DynoMotion@yahoogroups.com
Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

For what it’s worth, I can stop and start MM and the html app without crashing anything.

 

-Brad

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Saturday, January 21, 2012 11:15 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Nope, I'm stopping all timers, and killing all threads I've created.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>

Group: DynoMotion Message: 3260 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

This crash is coming after mere seconds of running. I can open my app, open KMotion, close my app, all within a few seconds, the get the crash. Is there anything more I need to do than KM_Controller.Dispose()?

I have one timer thread doing my 100mSec GUI updates. There are no other threads accessing the KM_Controller, other than when button presses occur. I stop that timer, then do the dispose.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> Also worth noting is that I will occasionally get a rogue KmotionServer.exe
> process if I have a kflop plugged in with an app connected and my cpu
> hibernates.
>
>
>
> When this happens, I usually need to restart as the process cannot be
> terminated in the task manager.
>
>
>
>
>
> -Brad Murry
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> Behalf Of Brad Murry
> Sent: Sunday, January 22, 2012 2:16 AM
> To: DynoMotion@yahoogroups.com
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> For what it's worth, I can stop and start MM and the html app without
> crashing anything.
>
>
>
> -Brad
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> Behalf Of himykabibble
> Sent: Saturday, January 21, 2012 11:15 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Nope, I'm stopping all timers, and killing all threads I've created.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ,
> "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > I believe so, but I'll make a second run through and check.
> >
> > This is *really* close to working....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ,
> Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Are you terminating all your Timers and Threads that might be accessing
> the board before closing?
> > > Â
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Also, if I open my app, then open KMotion, then close my app, the board
> disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller
> in the FormClosing event handler. Is there something more I need to do to
> shutdown more gracefully?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad/Tom,
> > > >
> > > > OK, at least I've got a work-around, so not a biggie.
> > > >
> > > > I am having another problem, related to disconnects. Using the
> combination of CheckIsReady() and Connected, I now seem to be reliably
> seeing connects and disconnects. At least I have yet to see it screw up.
> But, I'm finding that I can easily get things into a state where KMotion
> and/or dotNet appear to no longer work properly.
> > > >
> > > > If I have my app running, then disconnect the USB cable, the app
> correctly detects the disconnect. If I then re-connect the cable, the app
> correctly detects the reconnect, and the app mostly works properly. But, I
> can no longer control I/Os, and, at this point I can not even start up
> KMotion - it just hangs before putting anything up on the screen. Something
> in either KMotion or dotNet seems to be locking up.
> > > >
> > > > Any idea where I should look?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > That is right Ray, the issue is with the MainStatus interop. Kevin
> pointed
> > > > > it out a while back as well.
> > > > >
> > > > >
> > > > >
> > > > > I think I have it fixed, but I need to test and upload new source.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com
> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > Behalf Of himykabibble
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
>
> > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > You seem to have a fencepose error in the I/O handling in dotNet. I
> have two
> > > > > buttons that control I/Os for Mist and Flood coolant, defined as
> follows:
> > > > >
> > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > >
> > > > > Each button has an LED in it. The button click event handlers use
> the
> > > > > following to set or clear the I/O bits:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > This much works properly, and the bits toggle as they should.
> > > > >
> > > > > My 100mSec status loop does the following to get current status
> > > > >
> > > > > KMController.UpdateMainStatus();
> > > > >
> > > > > I then have functions that return the current status of the coolant
> I/Os
> > > > > using:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > These values are used to control the LEDs in the two buttons.
> > > > >
> > > > > Here's the problem: I can correctly control the I/O pins. But, if I
> turn on
> > > > > the Mist, the Mist status comes back as false, and the Flood status
> comes
> > > > > back as true. To get the correct status back, I have to do the
> following:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3261 From: TK Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Well I guess I didn't ask the right question. Is everything terminated in a clean  manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. 

Regards 

TK

On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:

 

Nope, I'm stopping all timers, and killing all threads I've created.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>

Group: DynoMotion Message: 3262 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Tom/Ray

If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects.  By freeing the memory of the c++ objects, is this causing an issue?

 

The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.

 

This means you should only be using the files in the KMotion4xx\Kmotion\Release folder

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
Sent: Sunday, January 22, 2012 9:51 AM
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Well I guess I didn't ask the right question. Is everything terminated in a clean  manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself. 

 

Regards 


TK


On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:

 

Nope, I'm stopping all timers, and killing all threads I've created.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> I believe so, but I'll make a second run through and check.
>
> This is *really* close to working....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Saturday, January 21, 2012 9:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad/Tom,
> > >
> > > OK, at least I've got a work-around, so not a biggie.
> > >
> > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > >
> > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > >
> > > Any idea where I should look?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > it out a while back as well.
> > > >
> > > >
> > > >
> > > > I think I have it fixed, but I need to test and upload new source.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > Behalf Of himykabibble
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > >
> > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > >
> > > > Each button has an LED in it. The button click event handlers use the
> > > > following to set or clear the I/O bits:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > This much works properly, and the bits toggle as they should.
> > > >
> > > > My 100mSec status loop does the following to get current status
> > > >
> > > > KMController.UpdateMainStatus();
> > > >
> > > > I then have functions that return the current status of the coolant I/Os
> > > > using:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > >
> > > > These values are used to control the LEDs in the two buttons.
> > > >
> > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > back as true. To get the correct status back, I have to do the following:
> > > >
> > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > >
> >
>

Group: DynoMotion Message: 3264 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

That's what I'm trying to do, but I must be doing something wrong. I'm seeing things that just don't make sense. I have one timer running whose only purpose is doing the "blink" on the on-screen buttons. I setup one button with the following code:

StatusLine.AppendText("MachinePosButtonClick\n");
myBlinkTimer.Stop();
myBlinkTimer.Dispose();

Incredibly, the text displays in the status line, and the button CONTINUES to blink! How can that be??

My update loop runs on a System.Windows.Forms.Timer, at a 100mSec rate. The timer "Tick" handler is the ONLY thing that communicates with KM at all (except for user button presses, which are NOT occurring). Stopping the timer *should* stop the update events from occurring, but based on what's happening with the BlinkTimer above, I have to have my doubts. I tried to have the update handler turn off the timer, by adding a flag that is set in a button handler, and when that flag is set, the update handler will turn the timer off itself. That makes no difference whatsoever. And if I set that flag in the FormClose or FormClosing handler, then try to wait for the timer to be shot down, it never happens. I must be doing something really wrong, but damned if I can figure out what!

I've also noticed that if I bring up the app with the board connected, then disconnect, and re-connect the board, after the re-connect the app runs very slowly, as indicated by the buttons blinking at about half the normal rate. There's a whole lotta cycles going somewhere, but where? It appears to me that the KM method calls are suddenly taking a very long time to return. But why? What am I doing wrong that could cause that? As long as I don't do a disconnect, everything seems to work perfectly.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, TK <tk@...> wrote:
>
> Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
>
> Regards
>
> TK
>
> On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
>
> > Nope, I'm stopping all timers, and killing all threads I've created.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > I believe so, but I'll make a second run through and check.
> > >
> > > This is *really* close to working....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Â
> > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > Â
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Â
> > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad/Tom,
> > > > >
> > > > > OK, at least I've got a work-around, so not a biggie.
> > > > >
> > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > >
> > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > >
> > > > > Any idea where I should look?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > it out a while back as well.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On
> > > > > > Behalf Of himykabibble
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > >
> > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > >
> > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > following to set or clear the I/O bits:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > This much works properly, and the bits toggle as they should.
> > > > > >
> > > > > > My 100mSec status loop does the following to get current status
> > > > > >
> > > > > > KMController.UpdateMainStatus();
> > > > > >
> > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > using:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > These values are used to control the LEDs in the two buttons.
> > > > > >
> > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > >
> > > >
> > >
> >
> >
>
Group: DynoMotion Message: 3265 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

Everything I'm using is from v428. It's the only version I have on my machine.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Tom/Ray
>
> If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
>
>
>
> The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
>
>
>
> This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
> Sent: Sunday, January 22, 2012 9:51 AM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
>
>
>
> Regards
>
>
> TK
>
>
> On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
>
>
>
> Nope, I'm stopping all timers, and killing all threads I've created.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > I believe so, but I'll make a second run through and check.
> >
> > This is *really* close to working....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > Â
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad/Tom,
> > > >
> > > > OK, at least I've got a work-around, so not a biggie.
> > > >
> > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > >
> > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > >
> > > > Any idea where I should look?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > it out a while back as well.
> > > > >
> > > > >
> > > > >
> > > > > I think I have it fixed, but I need to test and upload new source.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > Behalf Of himykabibble
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > >
> > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > >
> > > > > Each button has an LED in it. The button click event handlers use the
> > > > > following to set or clear the I/O bits:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > This much works properly, and the bits toggle as they should.
> > > > >
> > > > > My 100mSec status loop does the following to get current status
> > > > >
> > > > > KMController.UpdateMainStatus();
> > > > >
> > > > > I then have functions that return the current status of the coolant I/Os
> > > > > using:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > These values are used to control the LEDs in the two buttons.
> > > > >
> > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > back as true. To get the correct status back, I have to do the following:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3267 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Ray,

 

I was referring to using the Release version instead of the Debug with respect to your KMotion references.

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 10:51 AM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Brad,

Everything I'm using is from v428. It's the only version I have on my machine.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Tom/Ray
>
> If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
>
>
>
> The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
>
>
>
> This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of TK
> Sent: Sunday, January 22, 2012 9:51 AM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
>
>
>
> Regards
>
>
> TK
>
>
> On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@...> wrote:
>
>
>
> Nope, I'm stopping all timers, and killing all threads I've created.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > I believe so, but I'll make a second run through and check.
> >
> > This is *really* close to working....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > Â
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Saturday, January 21, 2012 9:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad/Tom,
> > > >
> > > > OK, at least I've got a work-around, so not a biggie.
> > > >
> > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > >
> > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > >
> > > > Any idea where I should look?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > it out a while back as well.
> > > > >
> > > > >
> > > > >
> > > > > I think I have it fixed, but I need to test and upload new source.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > Behalf Of himykabibble
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > >
> > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > >
> > > > > Each button has an LED in it. The button click event handlers use the
> > > > > following to set or clear the I/O bits:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > This much works properly, and the bits toggle as they should.
> > > > >
> > > > > My 100mSec status loop does the following to get current status
> > > > >
> > > > > KMController.UpdateMainStatus();
> > > > >
> > > > > I then have functions that return the current status of the coolant I/Os
> > > > > using:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > >
> > > > > These values are used to control the LEDs in the two buttons.
> > > > >
> > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > back as true. To get the correct status back, I have to do the following:
> > > > >
> > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3269 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

I have one reference to the dotNet dll, and it is the release version.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> I was referring to using the Release version instead of the Debug with respect to your KMotion references.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 10:51 AM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> Everything I'm using is from v428. It's the only version I have on my machine.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > Tom/Ray
> >
> > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> >
> >
> >
> > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> >
> >
> >
> > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > Sent: Sunday, January 22, 2012 9:51 AM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> >
> >
> >
> > Regards
> >
> >
> > TK
> >
> >
> > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> >
> >
> >
> > Nope, I'm stopping all timers, and killing all threads I've created.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > I believe so, but I'll make a second run through and check.
> > >
> > > This is *really* close to working....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Â
> > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > Â
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Â
> > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad/Tom,
> > > > >
> > > > > OK, at least I've got a work-around, so not a biggie.
> > > > >
> > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > >
> > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > >
> > > > > Any idea where I should look?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > it out a while back as well.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > Behalf Of himykabibble
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > >
> > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > >
> > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > following to set or clear the I/O bits:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > This much works properly, and the bits toggle as they should.
> > > > > >
> > > > > > My 100mSec status loop does the following to get current status
> > > > > >
> > > > > > KMController.UpdateMainStatus();
> > > > > >
> > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > using:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > >
> > > > > > These values are used to control the LEDs in the two buttons.
> > > > > >
> > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > >
> > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3272 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> I have one reference to the dotNet dll, and it is the release version.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Ray,
> >
> >
> >
> > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 10:51 AM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > Everything I'm using is from v428. It's the only version I have on my machine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > Tom/Ray
> > >
> > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > >
> > >
> > >
> > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > >
> > >
> > >
> > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > Sent: Sunday, January 22, 2012 9:51 AM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > >
> > >
> > >
> > > Regards
> > >
> > >
> > > TK
> > >
> > >
> > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > >
> > >
> > >
> > > Nope, I'm stopping all timers, and killing all threads I've created.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > I believe so, but I'll make a second run through and check.
> > > >
> > > > This is *really* close to working....
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Â
> > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > Â
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Â
> > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad/Tom,
> > > > > >
> > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > >
> > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > >
> > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > >
> > > > > > Any idea where I should look?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > it out a while back as well.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > Behalf Of himykabibble
> > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > >
> > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > >
> > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > following to set or clear the I/O bits:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > >
> > > > > > > My 100mSec status loop does the following to get current status
> > > > > > >
> > > > > > > KMController.UpdateMainStatus();
> > > > > > >
> > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > using:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > >
> > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3273 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

It likely you are attaching your handler multiple times.

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 11:17 AM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> I have one reference to the dotNet dll, and it is the release version.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Ray,
> >
> >
> >
> > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 10:51 AM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > Everything I'm using is from v428. It's the only version I have on my machine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > Tom/Ray
> > >
> > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > >
> > >
> > >
> > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > >
> > >
> > >
> > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > Sent: Sunday, January 22, 2012 9:51 AM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > >
> > >
> > >
> > > Regards
> > >
> > >
> > > TK
> > >
> > >
> > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > >
> > >
> > >
> > > Nope, I'm stopping all timers, and killing all threads I've created.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > I believe so, but I'll make a second run through and check.
> > > >
> > > > This is *really* close to working....
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Â
> > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > Â
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Â
> > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad/Tom,
> > > > > >
> > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > >
> > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > >
> > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > >
> > > > > > Any idea where I should look?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > it out a while back as well.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > Behalf Of himykabibble
> > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > >
> > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > >
> > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > following to set or clear the I/O bits:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > >
> > > > > > > My 100mSec status loop does the following to get current status
> > > > > > >
> > > > > > > KMController.UpdateMainStatus();
> > > > > > >
> > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > using:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > >
> > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > >
> > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > >
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3274 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

It happens one time, in the form constructor....

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> It likely you are attaching your handler multiple times.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 11:17 AM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > I have one reference to the dotNet dll, and it is the release version.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > Ray,
> > >
> > >
> > >
> > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 10:51 AM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > Everything I'm using is from v428. It's the only version I have on my machine.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > Tom/Ray
> > > >
> > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > >
> > > >
> > > >
> > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > >
> > > >
> > > >
> > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > >
> > > >
> > > >
> > > > Regards
> > > >
> > > >
> > > > TK
> > > >
> > > >
> > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > >
> > > >
> > > >
> > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > I believe so, but I'll make a second run through and check.
> > > > >
> > > > > This is *really* close to working....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚
> > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > ÃÆ'‚
> > > > > > Regards
> > > > > > TK
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚
> > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad/Tom,
> > > > > > >
> > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > >
> > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > >
> > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > >
> > > > > > > Any idea where I should look?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > it out a while back as well.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > Behalf Of himykabibble
> > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > >
> > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > >
> > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > following to set or clear the I/O bits:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > >
> > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > >
> > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > >
> > > > > > > > KMController.UpdateMainStatus();
> > > > > > > >
> > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > using:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > >
> > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > >
> > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > >
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3275 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> It happens one time, in the form constructor....
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > It likely you are attaching your handler multiple times.
> >
> >
> >
> > -Brad Murry
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 11:17 AM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > I have one reference to the dotNet dll, and it is the release version.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > Ray,
> > > >
> > > >
> > > >
> > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Tom/Ray
> > > > >
> > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > >
> > > > >
> > > > >
> > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > >
> > > > >
> > > > >
> > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > >
> > > > >
> > > > >
> > > > > Regards
> > > > >
> > > > >
> > > > > TK
> > > > >
> > > > >
> > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > >
> > > > >
> > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Tom,
> > > > > >
> > > > > > I believe so, but I'll make a second run through and check.
> > > > > >
> > > > > > This is *really* close to working....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'‚
> > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > ÃÆ'‚
> > > > > > > Regards
> > > > > > > TK
> > > > > > >
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'‚
> > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad/Tom,
> > > > > > > >
> > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > >
> > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > >
> > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > >
> > > > > > > > Any idea where I should look?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > it out a while back as well.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > Behalf Of himykabibble
> > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > >
> > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > >
> > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > >
> > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > >
> > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > >
> > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > using:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > >
> > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > >
> > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > >
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3276 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > It happens one time, in the form constructor....
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > It likely you are attaching your handler multiple times.
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 11:17 AM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > I have one reference to the dotNet dll, and it is the release version.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Ray,
> > > > >
> > > > >
> > > > >
> > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Tom/Ray
> > > > > >
> > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > >
> > > > > >
> > > > > >
> > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > > >
> > > > > >
> > > > > >
> > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > >
> > > > > >
> > > > > >
> > > > > > Regards
> > > > > >
> > > > > >
> > > > > > TK
> > > > > >
> > > > > >
> > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Tom,
> > > > > > >
> > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > >
> > > > > > > This is *really* close to working....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'‚
> > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > ÃÆ'‚
> > > > > > > > Regards
> > > > > > > > TK
> > > > > > > >
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'‚
> > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad/Tom,
> > > > > > > > >
> > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > >
> > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > >
> > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > >
> > > > > > > > > Any idea where I should look?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > it out a while back as well.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > >
> > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > >
> > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > >
> > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > >
> > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > >
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > >
> > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > using:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > >
> > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > >
> > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > >
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3277 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:

// Re-connected, so download our init.c
Thread.Sleep(1000);
String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
KMController.CompileAndLoadCoff(1, TheCFile, true);
KMController.WriteLine("Execute1");
Thread.Sleep(1000);

Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > It happens one time, in the form constructor....
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > It likely you are attaching your handler multiple times.
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Ray,
> > > > > >
> > > > > >
> > > > > >
> > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Tom/Ray
> > > > > > >
> > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Regards
> > > > > > >
> > > > > > >
> > > > > > > TK
> > > > > > >
> > > > > > >
> > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > >
> > > > > > > > This is *really* close to working....
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'‚
> > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > ÃÆ'‚
> > > > > > > > > Regards
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'‚
> > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad/Tom,
> > > > > > > > > >
> > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > >
> > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > >
> > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > >
> > > > > > > > > > Any idea where I should look?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > it out a while back as well.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > >
> > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > >
> > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > >
> > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > >
> > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > >
> > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > >
> > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > using:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > >
> > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > >
> > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > >
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3283 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.

At least the crashes are now gone!

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
>
> // Re-connected, so download our init.c
> Thread.Sleep(1000);
> String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> KMController.CompileAndLoadCoff(1, TheCFile, true);
> KMController.WriteLine("Execute1");
> Thread.Sleep(1000);
>
> Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > It happens one time, in the form constructor....
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > It likely you are attaching your handler multiple times.
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Ray,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Tom/Ray
> > > > > > > >
> > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Regards
> > > > > > > >
> > > > > > > >
> > > > > > > > TK
> > > > > > > >
> > > > > > > >
> > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > >
> > > > > > > > > This is *really* close to working....
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'‚
> > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > ÃÆ'‚
> > > > > > > > > > Regards
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'‚
> > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad/Tom,
> > > > > > > > > > >
> > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > >
> > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > >
> > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > >
> > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > >
> > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > >
> > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > >
> > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > >
> > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > >
> > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > using:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > >
> > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > >
> > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > >
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3286 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Uh-oh! This looks like a problem.... The UpdateStatus calls are taking an average of about 300 mSec. I need to get status considerably faster than that. Any ideas?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.
>
> At least the crashes are now gone!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> >
> > // Re-connected, so download our init.c
> > Thread.Sleep(1000);
> > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > KMController.WriteLine("Execute1");
> > Thread.Sleep(1000);
> >
> > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > It happens one time, in the form constructor....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > It likely you are attaching your handler multiple times.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Tom/Ray
> > > > > > > > >
> > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > >
> > > > > > > > > > This is *really* close to working....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > >
> > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > >
> > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > >
> > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > >
> > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > >
> > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3287 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
On a fresh start, UpdateStatus returns quickly, apparently under a mSec. But after a disconnect-reconnect, it jumps up to about 200mSec if my app is the only one running, or 300mSec if KMotion is also running.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Uh-oh! This looks like a problem.... The UpdateStatus calls are taking an average of about 300 mSec. I need to get status considerably faster than that. Any ideas?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try to time the calls, and see what we're dealing with.
> >
> > At least the crashes are now gone!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > >
> > > // Re-connected, so download our init.c
> > > Thread.Sleep(1000);
> > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > KMController.WriteLine("Execute1");
> > > Thread.Sleep(1000);
> > >
> > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > It happens one time, in the form constructor....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > It likely you are attaching your handler multiple times.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom/Ray
> > > > > > > > > >
> > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etc…. in your app as KMotion.exe is.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > >
> > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'‚
> > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > >
> > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > using:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3289 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Hi Ray,
 
No it shouldn't take that long.
 
These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
 
User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
 
And then the data transfers at ~ 400KByes per second.
 
I think the MainStatus record is around 300 bytes.     
 
So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
 
Of course these are typical times.  Worst case might be seconds depending on Windows.
 
Regards.
TK
 
 
Group: DynoMotion Message: 3294 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:

DateTime start = DateTime.Now;
KMController.UpdateMainStatus();
DateTime end = DateTime.Now;
TimeSpan delta = end - start;
Debug.WriteLine(start + " " + end + "=" + delta + "\n");

Without the disconnect/reconnect, all is fine.

Any ideas?

Regards,
Ray L.


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> No it shouldn't take that long.
>  
> These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
>  
> User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
>  
> And then the data transfers at ~ 400KByes per second.
>  
> I think the MainStatus record is around 300 bytes.     
>  
> So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
>  
> Of course these are typical times.  Worst case might be seconds depending on Windows.
>  
> Regards.
> TK
>  
>  
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 11:43 AM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> to time the calls, and see what we're dealing with.
>
> At least the crashes are now gone!
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> >
> > // Re-connected, so download our init.c
> > Thread.Sleep(1000);
> > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > KMController.WriteLine("Execute1");
> > Thread.Sleep(1000);
> >
> > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > It happens one time, in the form constructor....
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > It likely you are attaching your handler multiple times.
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Tom/Ray
> > > > > > > > >
> > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'¢â‚¬Â¦. in your app as KMotion.exe is.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Regards
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > TK
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > >
> > > > > > > > > > This is *really* close to working....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > > > Regards
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > >
> > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > >
> > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > >
> > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > >
> > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > >
> > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > >
> > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > >
> > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > >
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3297 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Hi Ray,
 
Sounds like maybe something is getting blocked and eventually timing out after 100ms.  After the disconnect when you are getting the long delays.  Is the MainStatus data correct and current?
 
Regards
TK 

Group: DynoMotion Message: 3298 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> Sounds like maybe something is getting blocked and eventually timing out after 100ms.  After the disconnect when you are getting the long delays.  Is the MainStatus data correct and current?
>  
> Regards
> TK 
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 12:21 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Tom,
>
> That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
>
> DateTime start = DateTime.Now;
> KMController.UpdateMainStatus();
> DateTime end = DateTime.Now;
> TimeSpan delta = end - start;
> Debug.WriteLine(start + " " + end + "=" + delta + "\n");
>
> Without the disconnect/reconnect, all is fine.
>
> Any ideas?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > No it shouldn't take that long.
> >  
> > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
> >  
> > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> >  
> > And then the data transfers at ~ 400KByes per second.
> >  
> > I think the MainStatus record is around 300 bytes.     
> >  
> > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> >  
> > Of course these are typical times.  Worst case might be seconds depending on Windows.
> >  
> > Regards.
> > TK
> >  
> >  
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 11:43 AM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > to time the calls, and see what we're dealing with.
> >
> > At least the crashes are now gone!
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > >
> > > // Re-connected, so download our init.c
> > > Thread.Sleep(1000);
> > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > KMController.WriteLine("Execute1");
> > > Thread.Sleep(1000);
> > >
> > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > It happens one time, in the form constructor....
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > It likely you are attaching your handler multiple times.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom/Ray
> > > > > > > > > >
> > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Regards
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > TK
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > >
> > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > Regards
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > >
> > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > >
> > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > using:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3301 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Sounds like maybe something is getting blocked and eventually timing out after 100ms.  After the disconnect when you are getting the long delays.  Is the MainStatus data correct and current?
> >  
> > Regards
> > TK 
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 12:21 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Tom,
> >
> > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> >
> > DateTime start = DateTime.Now;
> > KMController.UpdateMainStatus();
> > DateTime end = DateTime.Now;
> > TimeSpan delta = end - start;
> > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> >
> > Without the disconnect/reconnect, all is fine.
> >
> > Any ideas?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > >  
> > > No it shouldn't take that long.
> > >  
> > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
> > >  
> > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > >  
> > > And then the data transfers at ~ 400KByes per second.
> > >  
> > > I think the MainStatus record is around 300 bytes.     
> > >  
> > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > >  
> > > Of course these are typical times.  Worst case might be seconds depending on Windows.
> > >  
> > > Regards.
> > > TK
> > >  
> > >  
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 11:43 AM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > to time the calls, and see what we're dealing with.
> > >
> > > At least the crashes are now gone!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > >
> > > > // Re-connected, so download our init.c
> > > > Thread.Sleep(1000);
> > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > KMController.WriteLine("Execute1");
> > > > Thread.Sleep(1000);
> > > >
> > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > It happens one time, in the form constructor....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Ray,
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom/Ray
> > > > > > > > > > >
> > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Regards
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > >
> > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3302 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

You use colorful language Ray,

 

 

So here is what I observe::

 

 

#1 UpdateMainStatus() is not performing the lock - get data – release as I thought, just a straight shot.

 

I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::

 

         Stopwatch sw = new Stopwatch();

            while (true)

            {

                sw.Reset();

                sw.Start();

                _Controller.UpdateMainStatus();

                sw.Stop();

                Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));

                Thread.Sleep(100);

            }

 

I am seeing around 15ms round trip.

 

Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.

 

 

Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::

            while (true)

            {

                sw.Reset();

                var result = _Controller.WaitToken(100);

                if (result == KMOTION_TOKEN.KMOTION_LOCKED)

                {

                    sw.Start();

                    _Controller.UpdateMainStatus();

                    sw.Stop();

                    _Controller.ReleaseToken();

                    Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));

                }

                Thread.Sleep(100);

            }

 

I get the 218ms off the bat…

 

So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::

http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx

 

 

So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?

 

-Brad Murry

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 1:48 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Sounds like maybe something is getting blocked and eventually timing out after 100ms.  After the disconnect when you are getting the long delays.  Is the MainStatus data correct and current?
> >  
> > Regards
> > TK 
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 12:21 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Tom,
> >
> > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> >
> > DateTime start = DateTime.Now;
> > KMController.UpdateMainStatus();
> > DateTime end = DateTime.Now;
> > TimeSpan delta = end - start;
> > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> >
> > Without the disconnect/reconnect, all is fine.
> >
> > Any ideas?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > >  
> > > No it shouldn't take that long.
> > >  
> > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
> > >  
> > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > >  
> > > And then the data transfers at ~ 400KByes per second.
> > >  
> > > I think the MainStatus record is around 300 bytes.     
> > >  
> > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > >  
> > > Of course these are typical times.  Worst case might be seconds depending on Windows.
> > >  
> > > Regards.
> > > TK
> > >  
> > >  
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 11:43 AM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > to time the calls, and see what we're dealing with.
> > >
> > > At least the crashes are now gone!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > >
> > > > // Re-connected, so download our init.c
> > > > Thread.Sleep(1000);
> > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > KMController.WriteLine("Execute1");
> > > > Thread.Sleep(1000);
> > > >
> > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > It happens one time, in the form constructor....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Ray,
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom/Ray
> > > > > > > > > > >
> > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Regards
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > >
> > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3303 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Well I guess that last post was not entirely true…

 

I am locking the board in the c++ side when I grab the Main_Status….

 

Are we introducing a race condition when calling locks to close together?

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Brad Murry
Sent: Sunday, January 22, 2012 2:18 PM
To: DynoMotion@yahoogroups.com
Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

You use colorful language Ray,

 

 

So here is what I observe::

 

 

#1 UpdateMainStatus() is not performing the lock - get data – release as I thought, just a straight shot.

 

I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::

 

         Stopwatch sw = new Stopwatch();

            while (true)

            {

                sw.Reset();

                sw.Start();

                _Controller.UpdateMainStatus();

                sw.Stop();

                Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));

                Thread.Sleep(100);

            }

 

I am seeing around 15ms round trip.

 

Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.

 

 

Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::

            while (true)

            {

                sw.Reset();

                var result = _Controller.WaitToken(100);

                if (result == KMOTION_TOKEN.KMOTION_LOCKED)

                {

                    sw.Start();

                    _Controller.UpdateMainStatus();

                    sw.Stop();

                    _Controller.ReleaseToken();

                    Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));

                }

                Thread.Sleep(100);

            }

 

I get the 218ms off the bat…

 

So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::

http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx

 

 

So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?

 

-Brad Murry

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 1:48 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > Sounds like maybe something is getting blocked and eventually timing out after 100ms.  After the disconnect when you are getting the long delays.  Is the MainStatus data correct and current?
> >  
> > Regards
> > TK 
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 12:21 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Tom,
> >
> > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> >
> > DateTime start = DateTime.Now;
> > KMController.UpdateMainStatus();
> > DateTime end = DateTime.Now;
> > TimeSpan delta = end - start;
> > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> >
> > Without the disconnect/reconnect, all is fine.
> >
> > Any ideas?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > >  
> > > No it shouldn't take that long.
> > >  
> > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.  This involves:
> > >  
> > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > >  
> > > And then the data transfers at ~ 400KByes per second.
> > >  
> > > I think the MainStatus record is around 300 bytes.     
> > >  
> > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > >  
> > > Of course these are typical times.  Worst case might be seconds depending on Windows.
> > >  
> > > Regards.
> > > TK
> > >  
> > >  
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 11:43 AM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > to time the calls, and see what we're dealing with.
> > >
> > > At least the crashes are now gone!
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > >
> > > > // Re-connected, so download our init.c
> > > > Thread.Sleep(1000);
> > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > KMController.WriteLine("Execute1");
> > > > Thread.Sleep(1000);
> > > >
> > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > It happens one time, in the form constructor....
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > Ray,
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Tom/Ray
> > > > > > > > > > >
> > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Regards
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > TK
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom,
> > > > > > > > > > > >
> > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > >
> > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3304 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

I have no clue how that code came out formatted like that! Very odd....

Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.

For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> You use colorful language Ray,
>
>
>
>
>
> So here is what I observe::
>
>
>
>
>
> #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
>
>
>
> I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
>
>
>
> Stopwatch sw = new Stopwatch();
>
> while (true)
>
> {
>
> sw.Reset();
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> Thread.Sleep(100);
>
> }
>
>
>
> I am seeing around 15ms round trip.
>
>
>
> Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
>
>
>
>
>
> Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
>
> while (true)
>
> {
>
> sw.Reset();
>
> var result = _Controller.WaitToken(100);
>
> if (result == KMOTION_TOKEN.KMOTION_LOCKED)
>
> {
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> _Controller.ReleaseToken();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> }
>
> Thread.Sleep(100);
>
> }
>
>
>
> I get the 218ms off the bat…
>
>
>
> So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
>
> http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
>
>
>
>
>
> So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
>
>
>
> -Brad Murry
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 1:48 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > Â
> > > Regards
> > > TKÂ
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Sunday, January 22, 2012 12:21 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Tom,
> > >
> > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > >
> > > DateTime start = DateTime.Now;
> > > KMController.UpdateMainStatus();
> > > DateTime end = DateTime.Now;
> > > TimeSpan delta = end - start;
> > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > >
> > > Without the disconnect/reconnect, all is fine.
> > >
> > > Any ideas?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > ÂÂ
> > > > No it shouldn't take that long.
> > > > ÂÂ
> > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves:
> > > > ÂÂ
> > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > ÂÂ
> > > > And then the data transfers at ~ 400KByes per second.
> > > > ÂÂ
> > > > I think the MainStatus record is around 300 bytes.   ÂÂ
> > > > ÂÂ
> > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > ÂÂ
> > > > Of course these are typical times. Worst case might be seconds depending on Windows.
> > > > ÂÂ
> > > > Regards.
> > > > TK
> > > > ÂÂ
> > > > ÂÂ
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > ÂÂ
> > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > to time the calls, and see what we're dealing with.
> > > >
> > > > At least the crashes are now gone!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > >
> > > > > // Re-connected, so download our init.c
> > > > > Thread.Sleep(1000);
> > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > KMController.WriteLine("Execute1");
> > > > > Thread.Sleep(1000);
> > > > >
> > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > It happens one time, in the form constructor....
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Ray,
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > >
> > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Regards
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > >
> > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3305 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Where are you getting your axis values?

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 2:27 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Brad,

I have no clue how that code came out formatted like that! Very odd....

Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.

For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> You use colorful language Ray,
>
>
>
>
>
> So here is what I observe::
>
>
>
>
>
> #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
>
>
>
> I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
>
>
>
> Stopwatch sw = new Stopwatch();
>
> while (true)
>
> {
>
> sw.Reset();
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> Thread.Sleep(100);
>
> }
>
>
>
> I am seeing around 15ms round trip.
>
>
>
> Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
>
>
>
>
>
> Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
>
> while (true)
>
> {
>
> sw.Reset();
>
> var result = _Controller.WaitToken(100);
>
> if (result == KMOTION_TOKEN.KMOTION_LOCKED)
>
> {
>
> sw.Start();
>
> _Controller.UpdateMainStatus();
>
> sw.Stop();
>
> _Controller.ReleaseToken();
>
> Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
>
> }
>
> Thread.Sleep(100);
>
> }
>
>
>
> I get the 218ms off the bat…
>
>
>
> So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
>
> http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
>
>
>
>
>
> So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
>
>
>
> -Brad Murry
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 1:48 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > > Â
> > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > Â
> > > Regards
> > > TKÂ
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Sent: Sunday, January 22, 2012 12:21 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > > Â
> > > Tom,
> > >
> > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > >
> > > DateTime start = DateTime.Now;
> > > KMController.UpdateMainStatus();
> > > DateTime end = DateTime.Now;
> > > TimeSpan delta = end - start;
> > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > >
> > > Without the disconnect/reconnect, all is fine.
> > >
> > > Any ideas?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > ÂÂ
> > > > No it shouldn't take that long.
> > > > ÂÂ
> > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms. This involves:
> > > > ÂÂ
> > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > ÂÂ
> > > > And then the data transfers at ~ 400KByes per second.
> > > > ÂÂ
> > > > I think the MainStatus record is around 300 bytes.   ÂÂ
> > > > ÂÂ
> > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > ÂÂ
> > > > Of course these are typical times. Worst case might be seconds depending on Windows.
> > > > ÂÂ
> > > > Regards.
> > > > TK
> > > > ÂÂ
> > > > ÂÂ
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > ÂÂ
> > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > to time the calls, and see what we're dealing with.
> > > >
> > > > At least the crashes are now gone!
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > >
> > > > > // Re-connected, so download our init.c
> > > > > Thread.Sleep(1000);
> > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > KMController.WriteLine("Execute1");
> > > > > Thread.Sleep(1000);
> > > > >
> > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > It happens one time, in the form constructor....
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Ray,
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > >
> > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Regards
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > TK
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > >
> > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3306 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Hi Brad/Ray,
 
Well in that last post I can see why it takes so long.  There is only one Token so you can only get it once.  If you already have the token and try to get it again it will block and then timeout.
 
Also I wasn't really thinking correctly when I asked if the Data is refreshing.  If getting the Token fails and times out, if you then go ahead and read the Main_Status most likely it will still work ok.  It just means that by not having the token you are not protected and may get stepped on by some other Process/Thread/Task or step on somebody else.
 
I suspect there is a bug where someplace the token is never given back and from that point on everything else just times out trying to get the token.
 
One idea might be to set the timeout to infinity to debug and then things will simply permanently lock the first time after somebody doesn't give the token back properly.
 
Regards
TK 
 

Group: DynoMotion Message: 3307 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Where are you getting your axis values?
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:27 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> I have no clue how that code came out formatted like that! Very odd....
>
> Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
>
> For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > You use colorful language Ray,
> >
> >
> >
> >
> >
> > So here is what I observe::
> >
> >
> >
> >
> >
> > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> >
> >
> >
> > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> >
> >
> >
> > Stopwatch sw = new Stopwatch();
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I am seeing around 15ms round trip.
> >
> >
> >
> > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> >
> >
> >
> >
> >
> > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > var result = _Controller.WaitToken(100);
> >
> > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> >
> > {
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > _Controller.ReleaseToken();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > }
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I get the 218ms off the bat…
> >
> >
> >
> > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> >
> > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> >
> >
> >
> >
> >
> > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> >
> >
> >
> > -Brad Murry
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 1:48 PM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Â
> > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > > Â
> > > > Regards
> > > > TKÂ
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Â
> > > > Tom,
> > > >
> > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > >
> > > > DateTime start = DateTime.Now;
> > > > KMController.UpdateMainStatus();
> > > > DateTime end = DateTime.Now;
> > > > TimeSpan delta = end - start;
> > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > >
> > > > Without the disconnect/reconnect, all is fine.
> > > >
> > > > Any ideas?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'‚Â
> > > > > No it shouldn't take that long.
> > > > > ÃÆ'‚Â
> > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚Â ThisÃÆ'‚Â involves:
> > > > > ÃÆ'‚Â
> > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > ÃÆ'‚Â
> > > > > And then the data transfers at ~ 400KByes per second.
> > > > > ÃÆ'‚Â
> > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â
> > > > > ÃÆ'‚Â
> > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > ÃÆ'‚Â
> > > > > Of course these are typical times.ÃÆ'‚Â Worst case might be seconds depending on Windows.
> > > > > ÃÆ'‚Â
> > > > > Regards.
> > > > > TK
> > > > > ÃÆ'‚Â
> > > > > ÃÆ'‚Â
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'‚Â
> > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > to time the calls, and see what we're dealing with.
> > > > >
> > > > > At least the crashes are now gone!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > >
> > > > > > // Re-connected, so download our init.c
> > > > > > Thread.Sleep(1000);
> > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > KMController.WriteLine("Execute1");
> > > > > > Thread.Sleep(1000);
> > > > > >
> > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Ray,
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > >
> > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3308 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the bat…
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Â
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > > > Â
> > > > > Regards
> > > > > TKÂ
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Â
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚Â
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'‚Â
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚Â ThisÃÆ'‚Â involves:
> > > > > > ÃÆ'‚Â
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'‚Â
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'‚Â
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'‚Â
> > > > > > Of course these are typical times.ÃÆ'‚Â Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'‚Â
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚Â
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3309 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

If you do not want to manually perform your offset calculations(tool/origin/CPI) use these methods::

 

              double x = 0.0;

                double y = 0.0;

                double z = 0.0;

                double a = 0.0;

                double b = 0.0;

                double c = 0.0;

 

                _Controller.Interpreter.ReadCurMachinePosition(ref x, ref y, ref z, ref a, ref b, ref c);

 

                data.MachinePOSX = x;

                data.MachinePOSY = y;

                data.MachinePOSZ = z;

                data.MachinePOSA = a;

                data.MachinePOSB = b;

                data.MachinePOSC = c;

 

                _Controller.Interpreter.ReadCurInterpreterPosition(ref x, ref y, ref z, ref a, ref b, ref c);

 

                data.InterpreterPOSX = x;

                data.InterpreterPOSY = y;

                data.InterpreterPOSZ = z;

                data.InterpreterPOSA = a;

                data.InterpreterPOSB = b;

                data.InterpreterPOSC = c;

 

 

The first method will give machine location with CPI calculated, the second will also consider the origin and tool length.

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 2:43 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Brad,

Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Where are you getting your axis values?
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:27 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> I have no clue how that code came out formatted like that! Very odd....
>
> Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
>
> For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > You use colorful language Ray,
> >
> >
> >
> >
> >
> > So here is what I observe::
> >
> >
> >
> >
> >
> > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> >
> >
> >
> > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> >
> >
> >
> > Stopwatch sw = new Stopwatch();
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I am seeing around 15ms round trip.
> >
> >
> >
> > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> >
> >
> >
> >
> >
> > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> >
> > while (true)
> >
> > {
> >
> > sw.Reset();
> >
> > var result = _Controller.WaitToken(100);
> >
> > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> >
> > {
> >
> > sw.Start();
> >
> > _Controller.UpdateMainStatus();
> >
> > sw.Stop();
> >
> > _Controller.ReleaseToken();
> >
> > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> >
> > }
> >
> > Thread.Sleep(100);
> >
> > }
> >
> >
> >
> > I get the 218ms off the bat…
> >
> >
> >
> > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> >
> > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> >
> >
> >
> >
> >
> > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> >
> >
> >
> > -Brad Murry
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 1:48 PM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Â
> > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > > Â
> > > > Regards
> > > > TKÂ
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Â
> > > > Tom,
> > > >
> > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > >
> > > > DateTime start = DateTime.Now;
> > > > KMController.UpdateMainStatus();
> > > > DateTime end = DateTime.Now;
> > > > TimeSpan delta = end - start;
> > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > >
> > > > Without the disconnect/reconnect, all is fine.
> > > >
> > > > Any ideas?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'‚Â
> > > > > No it shouldn't take that long.
> > > > > ÃÆ'‚Â
> > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚Â ThisÃÆ'‚Â involves:
> > > > > ÃÆ'‚Â
> > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > ÃÆ'‚Â
> > > > > And then the data transfers at ~ 400KByes per second.
> > > > > ÃÆ'‚Â
> > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â
> > > > > ÃÆ'‚Â
> > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > ÃÆ'‚Â
> > > > > Of course these are typical times.ÃÆ'‚Â Worst case might be seconds depending on Windows.
> > > > > ÃÆ'‚Â
> > > > > Regards.
> > > > > TK
> > > > > ÃÆ'‚Â
> > > > > ÃÆ'‚Â
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'‚Â
> > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > to time the calls, and see what we're dealing with.
> > > > >
> > > > > At least the crashes are now gone!
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > >
> > > > > > // Re-connected, so download our init.c
> > > > > > Thread.Sleep(1000);
> > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > KMController.WriteLine("Execute1");
> > > > > > Thread.Sleep(1000);
> > > > > >
> > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Brad,
> > > > > > > > >
> > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > >
> > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > -Brad Murry
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Ray,
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > >
> > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > TK
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > >

(Message over 64 KB, truncated)
Group: DynoMotion Message: 3310 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

There are some hard coded path in the DynoMotion APIs that you need to follow.

 

Set this::

     _Controller.Interpreter.MainPathRoot = _Data.ConfigDirectory;

 

 

Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 2:51 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the bat…
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Â
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > > > Â
> > > > > Regards
> > > > > TKÂ
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Â
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚Â
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'‚Â
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚Â ThisÃÆ'‚Â involves:
> > > > > > ÃÆ'‚Â
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'‚Â
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'‚Â
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'‚Â
> > > > > > Of course these are typical times.ÃÆ'‚Â Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'‚Â
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚Â
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>

Group: DynoMotion Message: 3311 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Ray,
 
The MainStatus units are in Counts (or Steps).  So maybe your Resolution is 100 counts/inch.
 
Regards
TK

Group: DynoMotion Message: 3312 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad/Ray,
 
That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
 
If you override that externally I think it can cause a number of problems unless you know what you are doing.
 
It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
 
Regards
TK
 

Group: DynoMotion Message: 3313 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Nothing changes it unless you explicitly set it.

 

If you do not set it, display the garbage as Ray describes.  Where does it discover itself?(file/line no)

 

-Brad

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
Sent: Sunday, January 22, 2012 3:15 PM
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Brad/Ray,

 

That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.

 

If you override that externally I think it can cause a number of problems unless you know what you are doing.

 

It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.

 

Regards

TK

 

 

From: Brad Murry <bradodarb@...>
To: DynoMotion@yahoogroups.com
Sent: Sunday, January 22, 2012 2:01 PM
Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

There are some hard coded path in the DynoMotion APIs that you need to follow.

 

Set this::

     _Controller.Interpreter.MainPathRoot = _Data.ConfigDirectory;

 

 

Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)

 

-Brad Murry

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 2:51 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the bat…
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > Â
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms. After the disconnect when you are getting the long delays. Is the MainStatus data correct and current?
> > > > > Â
> > > > > Regards
> > > > > TKÂ
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > Â
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚Â
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'‚Â
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'‚Â ThisÃÆ'‚Â involves:
> > > > > > ÃÆ'‚Â
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'‚Â
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'‚Â
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'‚Â
> > > > > > Of course these are typical times.ÃÆ'‚Â Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'‚Â
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'‚Â
> > > > > > ÃÆ'‚Â
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚Â
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > >

(Message over 64 KB, truncated)
Group: DynoMotion Message: 3314 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

That did it! But what are the others returning? I used these two:

KMController.Interpreter.UserUnitsToInches(KMController.CoordMotion.GetAxisDestination(0));

and
KMController.MainStatus.GetDestination(0);

Both return the same values, which are neither inches nor counts, and return results that are scaled identically (100X commanded distance), even though the axes have different counts/inch. For example, "G0 X1 Y2 Z3" will move to X100 Y200 Z300.

Regards,
Ray L.


--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> If you do not want to manually perform your offset calculations(tool/origin/CPI) use these methods::
>
>
>
> double x = 0.0;
>
> double y = 0.0;
>
> double z = 0.0;
>
> double a = 0.0;
>
> double b = 0.0;
>
> double c = 0.0;
>
>
>
> _Controller.Interpreter.ReadCurMachinePosition(ref x, ref y, ref z, ref a, ref b, ref c);
>
>
>
> data.MachinePOSX = x;
>
> data.MachinePOSY = y;
>
> data.MachinePOSZ = z;
>
> data.MachinePOSA = a;
>
> data.MachinePOSB = b;
>
> data.MachinePOSC = c;
>
>
>
> _Controller.Interpreter.ReadCurInterpreterPosition(ref x, ref y, ref z, ref a, ref b, ref c);
>
>
>
> data.InterpreterPOSX = x;
>
> data.InterpreterPOSY = y;
>
> data.InterpreterPOSZ = z;
>
> data.InterpreterPOSA = a;
>
> data.InterpreterPOSB = b;
>
> data.InterpreterPOSC = c;
>
>
>
>
>
> The first method will give machine location with CPI calculated, the second will also consider the origin and tool length.
>
>
>
> -Brad Murry
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:43 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the bat…
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'‚
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'‚ After the disconnect when you are getting the long delays.ÃÆ'‚ Is theÃÆ'‚ MainStatus data correct and current?
> > > > > ÃÆ'‚
> > > > > Regards
> > > > > TKÃÆ'‚
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'‚
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'‚ÃÆ'‚ ThisÃÆ'Æ'‚ÃÆ'‚ involves:
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > Of course these are typical times.ÃÆ'Æ'‚ÃÆ'‚ Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3315 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

Nope, here's my init code (unless there's something I'm missing?):
KMController.CoordMotion.MotionParams.CountsPerInchX = 20000;
KMController.CoordMotion.MotionParams.MaxVelX = 70000;
KMController.CoordMotion.MotionParams.MaxAccelX = 500000;
KMController.WriteLine("EnableAxis0");
KMController.CoordMotion.MotionParams.CountsPerInchY = 20000;
KMController.CoordMotion.MotionParams.MaxVelY = 70000;
KMController.CoordMotion.MotionParams.MaxAccelY = 500000;
KMController.WriteLine("EnableAxis1");
KMController.CoordMotion.MotionParams.CountsPerInchZ = 20320;
KMController.CoordMotion.MotionParams.MaxVelZ = 51000;
KMController.CoordMotion.MotionParams.MaxAccelZ = 700000;
KMController.WriteLine("EnableAxis2");
KMController.CoordMotion.MotionParams.CountsPerInchA = 96000;
KMController.CoordMotion.MotionParams.MaxVelA = 48000;
KMController.CoordMotion.MotionParams.MaxAccelA = 20000;
KMController.WriteLine("EnableAxis3");

Regards,
Ray L.


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Ray,
>  
> The MainStatus units are in Counts (or Steps).  So maybe your Resolution is 100 counts/inch.
>  
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 1:42 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Brad,
>
> Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> >
> > Where are you getting your axis values?
> >
> >
> >
> > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:27 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >
> >
> >
> > Brad,
> >
> > I have no clue how that code came out formatted like that! Very odd....
> >
> > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> >
> > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > >
> > > You use colorful language Ray,
> > >
> > >
> > >
> > >
> > >
> > > So here is what I observe::
> > >
> > >
> > >
> > >
> > >
> > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > >
> > >
> > >
> > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > >
> > >
> > >
> > > Stopwatch sw = new Stopwatch();
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I am seeing around 15ms round trip.
> > >
> > >
> > >
> > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > >
> > >
> > >
> > >
> > >
> > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > >
> > > while (true)
> > >
> > > {
> > >
> > > sw.Reset();
> > >
> > > var result = _Controller.WaitToken(100);
> > >
> > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > >
> > > {
> > >
> > > sw.Start();
> > >
> > > _Controller.UpdateMainStatus();
> > >
> > > sw.Stop();
> > >
> > > _Controller.ReleaseToken();
> > >
> > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > >
> > > }
> > >
> > > Thread.Sleep(100);
> > >
> > > }
> > >
> > >
> > >
> > > I get the 218ms off the bat…
> > >
> > >
> > >
> > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > >
> > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > >
> > >
> > >
> > >
> > >
> > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > >
> > >
> > >
> > > -Brad Murry
> > >
> > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 1:48 PM
> > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÃÆ'‚
> > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'‚ After the disconnect when you are getting the long delays.ÃÆ'‚ Is theÃÆ'‚ MainStatus data correct and current?
> > > > > ÃÆ'‚
> > > > > Regards
> > > > > TKÃÆ'‚
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÃÆ'‚
> > > > > Tom,
> > > > >
> > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > >
> > > > > DateTime start = DateTime.Now;
> > > > > KMController.UpdateMainStatus();
> > > > > DateTime end = DateTime.Now;
> > > > > TimeSpan delta = end - start;
> > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > >
> > > > > Without the disconnect/reconnect, all is fine.
> > > > >
> > > > > Any ideas?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > No it shouldn't take that long.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'‚ÃÆ'‚ ThisÃÆ'Æ'‚ÃÆ'‚ involves:
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > Of course these are typical times.ÃÆ'Æ'‚ÃÆ'‚ Worst case might be seconds depending on Windows.
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > Regards.
> > > > > > TK
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > to time the calls, and see what we're dealing with.
> > > > > >
> > > > > > At least the crashes are now gone!
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > >
> > > > > > > // Re-connected, so download our init.c
> > > > > > > Thread.Sleep(1000);
> > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > KMController.WriteLine("Execute1");
> > > > > > > Thread.Sleep(1000);
> > > > > > >
> > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Brad,
> > > > > > > > > >
> > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > -Brad Murry
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Ray,
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > TK
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3316 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Hi Brad,
 
It should be set in \KMotionDLL\KMotionApp.cpp line ~98
 
Regards
TK
 
 
Group: DynoMotion Message: 3317 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Brad/Ray,
>  
> That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
>  
> If you override that externally I think it can cause a number of problems unless you know what you are doing.
>  
> It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
>  
> Regards
> TK
>  
>
> From: Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:01 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> There are some hard coded path in the DynoMotion APIs that you need to follow.
>  
> Set this::
>      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
>  
>  
> Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
>  
> -Brad Murry
>  
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:51 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>  
>  
> The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > Where are you getting your axis values?
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:27 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > I have no clue how that code came out formatted like that! Very odd....
> > >
> > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > >
> > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > You use colorful language Ray,
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So here is what I observe::
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > > >
> > > >
> > > >
> > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > >
> > > >
> > > >
> > > > Stopwatch sw = new Stopwatch();
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I am seeing around 15ms round trip.
> > > >
> > > >
> > > >
> > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > var result = _Controller.WaitToken(100);
> > > >
> > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > >
> > > > {
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > _Controller.ReleaseToken();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > }
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I get the 218ms off the bat…
> > > >
> > > >
> > > >
> > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > >
> > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚
> > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'‚ After the disconnect when you are getting the long delays.ÃÆ'‚ Is theÃÆ'‚ MainStatus data correct and current?
> > > > > > ÃÆ'‚
> > > > > > Regards
> > > > > > TKÃÆ'‚
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚
> > > > > > Tom,
> > > > > >
> > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > >
> > > > > > DateTime start = DateTime.Now;
> > > > > > KMController.UpdateMainStatus();
> > > > > > DateTime end = DateTime.Now;
> > > > > > TimeSpan delta = end - start;
> > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > >
> > > > > > Without the disconnect/reconnect, all is fine.
> > > > > >
> > > > > > Any ideas?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > No it shouldn't take that long.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'‚ÃÆ'‚ ThisÃÆ'Æ'‚ÃÆ'‚ involves:
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > Of course these are typical times.ÃÆ'Æ'‚ÃÆ'‚ Worst case might be seconds depending on Windows.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > Regards.
> > > > > > > TK
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > > to time the calls, and see what we're dealing with.
> > > > > > >
> > > > > > > At least the crashes are now gone!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > >
> > > > > > > > // Re-connected, so download our init.c
> > > > > > > > Thread.Sleep(1000);
> > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > Thread.Sleep(1000);
> > > > > > > >
> > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3318 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Hi Ray,
 
No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
 
It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
 
I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
 
Regards
TK

Group: DynoMotion Message: 3319 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
I'm now very confused about this.... Why do we have to pass a full path to the interpreter, if it's going to refuse to run files from other than specific paths? Why does it care where the file is? It appears to me it is looking ONLY relative to the current directory (which, for other reasons, is forced to C:\KMotion428)?

Regards,
Ray L.


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
>
>
> Hi Brad,
>  
> It should be set in \KMotionDLL\KMotionApp.cpp line ~98
>  
> Regards
> TK
>  
>  
> From: Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:19 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Nothing changes it unless you explicitly set it.
>  
> If you do not set it, display the garbage as Ray describes.  Where does it discover itself?(file/line no)
>  
> -Brad
>  
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
> Sent: Sunday, January 22, 2012 3:15 PM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>  
>  
> Brad/Ray,
>  
> That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
>  
> If you override that externally I think it can cause a number of problems unless you know what you are doing.
>  
> It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
>  
> Regards
> TK
>  
>  
> From:Brad Murry <bradodarb@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:01 PM
> Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
>  
>  
> There are some hard coded path in the DynoMotion APIs that you need to follow.
>  
> Set this::
>      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
>  
>  
> Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
>  
> -Brad Murry
>  
> From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 2:51 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>  
>  
> The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Brad,
> >
> > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > >
> > > Where are you getting your axis values?
> > >
> > >
> > >
> > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:27 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >
> > >
> > >
> > > Brad,
> > >
> > > I have no clue how that code came out formatted like that! Very odd....
> > >
> > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > >
> > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > >
> > > > You use colorful language Ray,
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So here is what I observe::
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > #1 UpdateMainStatus() is not performing the lock - get data â€" release as I thought, just a straight shot.
> > > >
> > > >
> > > >
> > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > >
> > > >
> > > >
> > > > Stopwatch sw = new Stopwatch();
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I am seeing around 15ms round trip.
> > > >
> > > >
> > > >
> > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > >
> > > > while (true)
> > > >
> > > > {
> > > >
> > > > sw.Reset();
> > > >
> > > > var result = _Controller.WaitToken(100);
> > > >
> > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > >
> > > > {
> > > >
> > > > sw.Start();
> > > >
> > > > _Controller.UpdateMainStatus();
> > > >
> > > > sw.Stop();
> > > >
> > > > _Controller.ReleaseToken();
> > > >
> > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > >
> > > > }
> > > >
> > > > Thread.Sleep(100);
> > > >
> > > > }
> > > >
> > > >
> > > >
> > > > I get the 218ms off the bat…
> > > >
> > > >
> > > >
> > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > >
> > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > >
> > > >
> > > >
> > > > -Brad Murry
> > > >
> > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Tom,
> > > > >
> > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Hi Ray,
> > > > > > ÃÆ'‚
> > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'‚ After the disconnect when you are getting the long delays.ÃÆ'‚ Is theÃÆ'‚ MainStatus data correct and current?
> > > > > > ÃÆ'‚
> > > > > > Regards
> > > > > > TKÃÆ'‚
> > > > > >
> > > > > > From: himykabibble <jagboy@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚
> > > > > > Tom,
> > > > > >
> > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > >
> > > > > > DateTime start = DateTime.Now;
> > > > > > KMController.UpdateMainStatus();
> > > > > > DateTime end = DateTime.Now;
> > > > > > TimeSpan delta = end - start;
> > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > >
> > > > > > Without the disconnect/reconnect, all is fine.
> > > > > >
> > > > > > Any ideas?
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > No it shouldn't take that long.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'‚ÃÆ'‚ ThisÃÆ'Æ'‚ÃÆ'‚ involves:
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚ ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > Of course these are typical times.ÃÆ'Æ'‚ÃÆ'‚ Worst case might be seconds depending on Windows.
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > Regards.
> > > > > > > TK
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚ÃÆ'‚
> > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> going to try
> > > > > > > to time the calls, and see what we're dealing with.
> > > > > > >
> > > > > > > At least the crashes are now gone!
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > >
> > > > > > > > // Re-connected, so download our init.c
> > > > > > > > Thread.Sleep(1000);
> > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > Thread.Sleep(1000);
> > > > > > > >
> > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Brad,
> > > > > > > > > > >
> > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>  
>
Group: DynoMotion Message: 3320 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
>  
> It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
>  
> I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
>  
> Regards
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 2:29 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Tom,
>
> I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Brad/Ray,
> >  
> > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> >  
> > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> >  
> > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> >  
> > Regards
> > TK
> >  
> >
> > From: Brad Murry <bradodarb@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 2:01 PM
> > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > There are some hard coded path in the DynoMotion APIs that you need to follow.
> >  
> > Set this::
> >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> >  
> >  
> > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> >  
> > -Brad Murry
> >  
> > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > Sent: Sunday, January 22, 2012 2:51 PM
> > To: DynoMotion@yahoogroups.com
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >  
> >  
> > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Brad,
> > >
> > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > >
> > > > Where are you getting your axis values?
> > > >
> > > >
> > > >
> > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >
> > > >
> > > >
> > > > Brad,
> > > >
> > > > I have no clue how that code came out formatted like that! Very odd....
> > > >
> > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > >
> > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > You use colorful language Ray,
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > So here is what I observe::
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'¢â‚¬" release as I thought, just a straight shot.
> > > > >
> > > > >
> > > > >
> > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > >
> > > > >
> > > > >
> > > > > Stopwatch sw = new Stopwatch();
> > > > >
> > > > > while (true)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Reset();
> > > > >
> > > > > sw.Start();
> > > > >
> > > > > _Controller.UpdateMainStatus();
> > > > >
> > > > > sw.Stop();
> > > > >
> > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > >
> > > > > Thread.Sleep(100);
> > > > >
> > > > > }
> > > > >
> > > > >
> > > > >
> > > > > I am seeing around 15ms round trip.
> > > > >
> > > > >
> > > > >
> > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > >
> > > > > while (true)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Reset();
> > > > >
> > > > > var result = _Controller.WaitToken(100);
> > > > >
> > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > >
> > > > > {
> > > > >
> > > > > sw.Start();
> > > > >
> > > > > _Controller.UpdateMainStatus();
> > > > >
> > > > > sw.Stop();
> > > > >
> > > > > _Controller.ReleaseToken();
> > > > >
> > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > >
> > > > > }
> > > > >
> > > > > Thread.Sleep(100);
> > > > >
> > > > > }
> > > > >
> > > > >
> > > > >
> > > > > I get the 218ms off the batÃÆ'¢â‚¬Â¦
> > > > >
> > > > >
> > > > >
> > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > >
> > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > >
> > > > >
> > > > >
> > > > > -Brad Murry
> > > > >
> > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Tom,
> > > > > >
> > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > >
> > > > > > > Hi Ray,
> > > > > > > ÃÆ'Æ'‚
> > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'‚ After the disconnect when you are getting the long delays.ÃÆ'Æ'‚ Is theÃÆ'Æ'‚ MainStatus data correct and current?
> > > > > > > ÃÆ'Æ'‚
> > > > > > > Regards
> > > > > > > TKÃÆ'Æ'‚
> > > > > > >
> > > > > > > From: himykabibble <jagboy@>
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > > ÃÆ'Æ'‚
> > > > > > > Tom,
> > > > > > >
> > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > >
> > > > > > > DateTime start = DateTime.Now;
> > > > > > > KMController.UpdateMainStatus();
> > > > > > > DateTime end = DateTime.Now;
> > > > > > > TimeSpan delta = end - start;
> > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > >
> > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > >
> > > > > > > Any ideas?
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > No it shouldn't take that long.
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ThisÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ involves:
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ Worst case might be seconds depending on Windows.
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > Regards.
> > > > > > > > TK
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > going to try
> > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > >
> > > > > > > > At least the crashes are now gone!
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > >
> > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > Thread.Sleep(1000);
> > > > > > > > >
> > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Brad,
> > > > > > > > > > > >
> > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…Ã
> Æ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3321 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> Tom,
>
> It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> >  
> > It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
> >  
> > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> >  
> > Regards
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Sunday, January 22, 2012 2:29 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> >  
> > Tom,
> >
> > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Brad/Ray,
> > >  
> > > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > >  
> > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > >  
> > > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> > >  
> > > Regards
> > > TK
> > >  
> > >
> > > From: Brad Murry <bradodarb@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 2:01 PM
> > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > >  
> > > Set this::
> > >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > >  
> > >  
> > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > >  
> > > -Brad Murry
> > >  
> > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > Sent: Sunday, January 22, 2012 2:51 PM
> > > To: DynoMotion@yahoogroups.com
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >  
> > >  
> > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > >
> > > > Brad,
> > > >
> > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > >
> > > > > Where are you getting your axis values?
> > > > >
> > > > >
> > > > >
> > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >
> > > > >
> > > > >
> > > > > Brad,
> > > > >
> > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > >
> > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > >
> > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > You use colorful language Ray,
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > So here is what I observe::
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'¢â‚¬" release as I thought, just a straight shot.
> > > > > >
> > > > > >
> > > > > >
> > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > >
> > > > > >
> > > > > >
> > > > > > Stopwatch sw = new Stopwatch();
> > > > > >
> > > > > > while (true)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Reset();
> > > > > >
> > > > > > sw.Start();
> > > > > >
> > > > > > _Controller.UpdateMainStatus();
> > > > > >
> > > > > > sw.Stop();
> > > > > >
> > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > >
> > > > > > Thread.Sleep(100);
> > > > > >
> > > > > > }
> > > > > >
> > > > > >
> > > > > >
> > > > > > I am seeing around 15ms round trip.
> > > > > >
> > > > > >
> > > > > >
> > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > >
> > > > > > while (true)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Reset();
> > > > > >
> > > > > > var result = _Controller.WaitToken(100);
> > > > > >
> > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > >
> > > > > > {
> > > > > >
> > > > > > sw.Start();
> > > > > >
> > > > > > _Controller.UpdateMainStatus();
> > > > > >
> > > > > > sw.Stop();
> > > > > >
> > > > > > _Controller.ReleaseToken();
> > > > > >
> > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > >
> > > > > > }
> > > > > >
> > > > > > Thread.Sleep(100);
> > > > > >
> > > > > > }
> > > > > >
> > > > > >
> > > > > >
> > > > > > I get the 218ms off the batÃÆ'¢â‚¬Â¦
> > > > > >
> > > > > >
> > > > > >
> > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > >
> > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > >
> > > > > >
> > > > > >
> > > > > > -Brad Murry
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Tom,
> > > > > > >
> > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > >
> > > > > > > > Hi Ray,
> > > > > > > > ÃÆ'Æ'‚
> > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'‚ After the disconnect when you are getting the long delays.ÃÆ'Æ'‚ Is theÃÆ'Æ'‚ MainStatus data correct and current?
> > > > > > > > ÃÆ'Æ'‚
> > > > > > > > Regards
> > > > > > > > TKÃÆ'Æ'‚
> > > > > > > >
> > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > > ÃÆ'Æ'‚
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > >
> > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > TimeSpan delta = end - start;
> > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > >
> > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > >
> > > > > > > > Any ideas?
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > No it shouldn't take that long.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ThisÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ involves:
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ Worst case might be seconds depending on Windows.
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > Regards.
> > > > > > > > > TK
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > going to try
> > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > >
> > > > > > > > > At least the crashes are now gone!
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > >
> > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > >
> > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Brad,
> > > > > > > > > > > > >
> > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬
> > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…Ã
> > Æ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3322 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > >  
> > > No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > >  
> > > It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
> > >  
> > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > >  
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 2:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > Tom,
> > >
> > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Brad/Ray,
> > > >  
> > > > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > >  
> > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > >  
> > > > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> > > >  
> > > > Regards
> > > > TK
> > > >  
> > > >
> > > > From: Brad Murry <bradodarb@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >  
> > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > >  
> > > > Set this::
> > > >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > >  
> > > >  
> > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > >  
> > > > -Brad Murry
> > > >  
> > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >  
> > > >  
> > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Where are you getting your axis values?
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > >
> > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > >
> > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > You use colorful language Ray,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So here is what I observe::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'¢â‚¬" release as I thought, just a straight shot.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am seeing around 15ms round trip.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > var result = _Controller.WaitToken(100);
> > > > > > >
> > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > _Controller.ReleaseToken();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I get the 218ms off the batÃÆ'¢â‚¬Â¦
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > >
> > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'‚ After the disconnect when you are getting the long delays.ÃÆ'Æ'‚ Is theÃÆ'Æ'‚ MainStatus data correct and current?
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Regards
> > > > > > > > > TKÃÆ'Æ'‚
> > > > > > > > >
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > >
> > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > >
> > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > >
> > > > > > > > > Any ideas?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ThisÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ involves:
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ Worst case might be seconds depending on Windows.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > Regards.
> > > > > > > > > > TK
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > > going to try
> > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > >
> > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > >
> > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > >
> > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬
> > > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…Ã
> > > Æ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3323 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Hi Brad,
 
I think you are right I see a problem on my end.  Actually there are two MainPathRoots for some reason.  One in KMotionDLL and one in Interpreter.CoordMotion.  The one in the CoordMotion Constructor is using a different method which uses where the .exe is located rather than the DLL.  I usually target my apps into the same bin directory (C:\KMotion428\KMotion\Release) so it works for me.  But if your App is located somewhere else it won't work.  It also looking to go back up the directory structure above the KMotion directory and if it doesn't find the KMotion directory it leaves the Path null.
 
I think the reason it work when Ray selects a GCode file from C:\KMotion428\GCode Files is because the current directory happens to be right for it to find it without a path.
 
I'll see if I can fix that.
 
Regards
TK
 
 

Group: DynoMotion Message: 3325 From: Tom Kerekes Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
100 is the default value.  So either they are not really being set or they are bein set in a different instance.
 
TK

Group: DynoMotion Message: 3328 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

Ray,

 

You need to set the CPI/Accels/Vels separately on the axis(for jogging, etc…) and also for the interpreter.

 

Maybe Tom can add a flag to the GCodeInterpreter to use current axis values to reduce some of the duplication…?

 

Here is how I init the interpreter in MM::

                var mfgdata = _InterpreterData_DM;

                _Controller.WriteLine(String.Format("DefineCS = {0} {1} {2} {3} {4} {5}", mfgdata.XAxisMapIndex

         , mfgdata.YAxisMapIndex, mfgdata.ZAxisMapIndex, mfgdata.AAxisMapIndex, mfgdata.BAxisMapIndex, mfgdata.CAxisMapIndex));

 

                _Controller.Interpreter.TPLookahead = mfgdata.TPLookahead;

                _Controller.Interpreter.CollinearTolerance = mfgdata.CollinearTolerance;

                _Controller.Interpreter.CornerTolerance = mfgdata.CornerTolerance;

                _Controller.Interpreter.FacetAngle = mfgdata.FacetAngle;

                _Controller.Interpreter.BreakAngle = mfgdata.BreakAngle;

 

                _Controller.Interpreter.MaxAccelX = mfgdata.MaxAccel_X;

                _Controller.Interpreter.MaxAccelY = mfgdata.MaxAccel_Y;

                _Controller.Interpreter.MaxAccelZ = mfgdata.MaxAccel_Z;

                _Controller.Interpreter.MaxAccelA = mfgdata.MaxAccel_A;

                _Controller.Interpreter.MaxAccelB = mfgdata.MaxAccel_B;

                _Controller.Interpreter.MaxAccelC = mfgdata.MaxAccel_C;

                _Controller.Interpreter.MaxVelX = mfgdata.MaxVelocity_X;

                _Controller.Interpreter.MaxVelY = mfgdata.MaxVelocity_Y;

                _Controller.Interpreter.MaxVelZ = mfgdata.MaxVelocity_Z;

                _Controller.Interpreter.MaxVelA = mfgdata.MaxVelocity_A;

                _Controller.Interpreter.MaxVelB = mfgdata.MaxVelocity_B;

                _Controller.Interpreter.MaxVelC = mfgdata.MaxVelocity_C;

                _Controller.Interpreter.CountsPerInchX = mfgdata.CountsPerInch_X;

                _Controller.Interpreter.CountsPerInchY = mfgdata.CountsPerInch_Y;

                _Controller.Interpreter.CountsPerInchZ = mfgdata.CountsPerInch_Z;

                _Controller.Interpreter.CountsPerInchA = mfgdata.CountsPerInch_A;

                _Controller.Interpreter.CountsPerInchB = mfgdata.CountsPerInch_B;

                _Controller.Interpreter.CountsPerInchC = mfgdata.CountsPerInch_C;

 

                _Controller.Interpreter.InitializeOnExecute = false;

                _Controller.Interpreter.InitializeInterpreter();

 

Notice the last lines (InitializeOnExecute and InitializeInterpreter), I set my tool table programmatically via strongly-typed XML data rather than use the EMC tool file.  This allows that to work.

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
Sent: Sunday, January 22, 2012 4:41 PM
To: DynoMotion@yahoogroups.com
Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

100 is the default value.  So either they are not really being set or they are bein set in a different instance.

 

TK

 

From: himykabibble <jagboy@...>
To: DynoMotion@yahoogroups.com
Sent: Sunday, January 22, 2012 3:27 PM
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@...> wrote:
>
> The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > Tom,
> >
> > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > >
> > > Hi Ray,
> > >  
> > > No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > >  
> > > It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
> > >  
> > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > >  
> > > Regards
> > > TK
> > >
> > > From: himykabibble <jagboy@>
> > > To: DynoMotion@yahoogroups.com
> > > Sent: Sunday, January 22, 2012 2:29 PM
> > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > >
> > >
> > >  
> > > Tom,
> > >
> > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Brad/Ray,
> > > >  
> > > > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > >  
> > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > >  
> > > > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> > > >  
> > > > Regards
> > > > TK
> > > >  
> > > >
> > > > From: Brad Murry <bradodarb@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >  
> > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > >  
> > > > Set this::
> > > >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > >  
> > > >  
> > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > >  
> > > > -Brad Murry
> > > >  
> > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > To: DynoMotion@yahoogroups.com
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >  
> > > >  
> > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > >
> > > > > Brad,
> > > > >
> > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > >
> > > > > > Where are you getting your axis values?
> > > > > >
> > > > > >
> > > > > >
> > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > To: DynoMotion@yahoogroups.com
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > >
> > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > >
> > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > You use colorful language Ray,
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So here is what I observe::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'¢â‚¬" release as I thought, just a straight shot.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I am seeing around 15ms round trip.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > >
> > > > > > > while (true)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Reset();
> > > > > > >
> > > > > > > var result = _Controller.WaitToken(100);
> > > > > > >
> > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > >
> > > > > > > {
> > > > > > >
> > > > > > > sw.Start();
> > > > > > >
> > > > > > > _Controller.UpdateMainStatus();
> > > > > > >
> > > > > > > sw.Stop();
> > > > > > >
> > > > > > > _Controller.ReleaseToken();
> > > > > > >
> > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > > Thread.Sleep(100);
> > > > > > >
> > > > > > > }
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > I get the 218ms off the batÃÆ'¢â‚¬Â¦
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > >
> > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > -Brad Murry
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > >
> > > > > > > > Tom,
> > > > > > > >
> > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > >
> > > > > > > > > Hi Ray,
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'‚ After the disconnect when you are getting the long delays.ÃÆ'Æ'‚ Is theÃÆ'Æ'‚ MainStatus data correct and current?
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Regards
> > > > > > > > > TKÃÆ'Æ'‚
> > > > > > > > >
> > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > ÃÆ'Æ'‚
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > >
> > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > >
> > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > >
> > > > > > > > > Any ideas?
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ThisÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ involves:
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ Worst case might be seconds depending on Windows.
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > Regards.
> > > > > > > > > > TK
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚
> > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > > going to try
> > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > >
> > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > >
> > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > >
> > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > >

(Message over 64 KB, truncated)
Group: DynoMotion Message: 3329 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Tom,

Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> 100 is the default value.  So either they are not really being set or they are bein set in a different instance.
>  
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 3:27 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > >  
> > > > No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > >  
> > > > It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
> > > >  
> > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > >  
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >  
> > > > Tom,
> > > >
> > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Brad/Ray,
> > > > >  
> > > > > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > >  
> > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > >  
> > > > > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >  
> > > > >
> > > > > From: Brad Murry <bradodarb@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >  
> > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > >  
> > > > > Set this::
> > > > >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > >  
> > > > >  
> > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > >  
> > > > > -Brad Murry
> > > > >  
> > > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >  
> > > > >  
> > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Where are you getting your axis values?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > >
> > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > >
> > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > You use colorful language Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So here is what I observe::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬" release as I thought, just a straight shot.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am seeing around 15ms round trip.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > >
> > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > _Controller.ReleaseToken();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I get the 218ms off the batÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > >
> > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Is theÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ MainStatus data correct and current?
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Regards
> > > > > > > > > > TKÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > >
> > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > >
> > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > >
> > > > > > > > > > Any ideas?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ThisÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ involves:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Regards.
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so
> long? I'm
> > > > > going to try
> > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > >
> > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > >
> > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > >
> > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬
> > > >
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'ââ‚
> ¬Â¦ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> ¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'
> > > > Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚ÂÂ
> ¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚ÂÂ
> ¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚ÂÂ
> ¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3331 From: Brad Murry Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet

I think it is something in dotNet that is broken,”

 

Not the case here, Ray.  Did you use my directions?

 

-Brad

 

From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
Sent: Sunday, January 22, 2012 5:06 PM
To: DynoMotion@yahoogroups.com
Subject: [DynoMotion] Re: Twiddling Bits in dotNet

 

 

Tom,

Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> 100 is the default value.  So either they are not really being set or they are bein set in a different instance.
>  
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 3:27 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>  
> Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> >
> > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > >  
> > > > No.  When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory.  It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > >  
> > > > It has nothing to do with the file you are trying to execute.  It is complaining because it can't find its internal files in the expected places.  Or I guess more specifically MainPathRoot is somehow invalid.
> > > >  
> > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > >  
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com
> > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > >  
> > > > Tom,
> > > >
> > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Brad/Ray,
> > > > >  
> > > > > That shouldn't be necessary.   The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > >  
> > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > >  
> > > > > It should already point to the root directory where KMotionDLL is located.  If not, remove whatever changed it.
> > > > >  
> > > > > Regards
> > > > > TK
> > > > >  
> > > > >
> > > > > From: Brad Murry <bradodarb@>
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > >  
> > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > >  
> > > > > Set this::
> > > > >      _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > >  
> > > > >  
> > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > >  
> > > > > -Brad Murry
> > > > >  
> > > > > From:DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > To: DynoMotion@yahoogroups.com
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >  
> > > > >  
> > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com, "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Where are you getting your axis values?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > To: DynoMotion@yahoogroups.com
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > >
> > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > >
> > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > You use colorful language Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So here is what I observe::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬" release as I thought, just a straight shot.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am seeing around 15ms round trip.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > >
> > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > _Controller.ReleaseToken();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I get the 218ms off the batÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > >
> > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Is theÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ MainStatus data correct and current?
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Regards
> > > > > > > > > > TKÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > >
> > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > >
> > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > >
> > > > > > > > > > Any ideas?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ThisÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ involves:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Regards.
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so
> long? I'm
> > > > > going to try
> > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > >
> > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > >
> > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > >
> > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬
> > > >
> 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'ââ‚
> ¬Â¦ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚ÂÂ
> ¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'
> > > > Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'†'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:
Group: DynoMotion Message: 3332 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

OK, that took care of the scaling issue!

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> Ray,
>
>
>
> You need to set the CPI/Accels/Vels separately on the axis(for jogging, etc…) and also for the interpreter.
>
>
>
> Maybe Tom can add a flag to the GCodeInterpreter to use current axis values to reduce some of the duplication…?
>
>
>
> Here is how I init the interpreter in MM::
>
> var mfgdata = _InterpreterData_DM;
>
> _Controller.WriteLine(String.Format("DefineCS = {0} {1} {2} {3} {4} {5}", mfgdata.XAxisMapIndex
>
> , mfgdata.YAxisMapIndex, mfgdata.ZAxisMapIndex, mfgdata.AAxisMapIndex, mfgdata.BAxisMapIndex, mfgdata.CAxisMapIndex));
>
>
>
> _Controller.Interpreter.TPLookahead = mfgdata.TPLookahead;
>
> _Controller.Interpreter.CollinearTolerance = mfgdata.CollinearTolerance;
>
> _Controller.Interpreter.CornerTolerance = mfgdata.CornerTolerance;
>
> _Controller.Interpreter.FacetAngle = mfgdata.FacetAngle;
>
> _Controller.Interpreter.BreakAngle = mfgdata.BreakAngle;
>
>
>
> _Controller.Interpreter.MaxAccelX = mfgdata.MaxAccel_X;
>
> _Controller.Interpreter.MaxAccelY = mfgdata.MaxAccel_Y;
>
> _Controller.Interpreter.MaxAccelZ = mfgdata.MaxAccel_Z;
>
> _Controller.Interpreter.MaxAccelA = mfgdata.MaxAccel_A;
>
> _Controller.Interpreter.MaxAccelB = mfgdata.MaxAccel_B;
>
> _Controller.Interpreter.MaxAccelC = mfgdata.MaxAccel_C;
>
> _Controller.Interpreter.MaxVelX = mfgdata.MaxVelocity_X;
>
> _Controller.Interpreter.MaxVelY = mfgdata.MaxVelocity_Y;
>
> _Controller.Interpreter.MaxVelZ = mfgdata.MaxVelocity_Z;
>
> _Controller.Interpreter.MaxVelA = mfgdata.MaxVelocity_A;
>
> _Controller.Interpreter.MaxVelB = mfgdata.MaxVelocity_B;
>
> _Controller.Interpreter.MaxVelC = mfgdata.MaxVelocity_C;
>
> _Controller.Interpreter.CountsPerInchX = mfgdata.CountsPerInch_X;
>
> _Controller.Interpreter.CountsPerInchY = mfgdata.CountsPerInch_Y;
>
> _Controller.Interpreter.CountsPerInchZ = mfgdata.CountsPerInch_Z;
>
> _Controller.Interpreter.CountsPerInchA = mfgdata.CountsPerInch_A;
>
> _Controller.Interpreter.CountsPerInchB = mfgdata.CountsPerInch_B;
>
> _Controller.Interpreter.CountsPerInchC = mfgdata.CountsPerInch_C;
>
>
>
> _Controller.Interpreter.InitializeOnExecute = false;
>
> _Controller.Interpreter.InitializeInterpreter();
>
>
>
> Notice the last lines (InitializeOnExecute and InitializeInterpreter), I set my tool table programmatically via strongly-typed XML data rather than use the EMC tool file. This allows that to work.
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of Tom Kerekes
> Sent: Sunday, January 22, 2012 4:41 PM
> To: DynoMotion@yahoogroups.com
> Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> 100 is the default value. So either they are not really being set or they are bein set in a different instance.
>
>
>
> TK
>
>
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Sunday, January 22, 2012 3:27 PM
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> >
> > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > Tom,
> > >
> > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > >
> > > > Hi Ray,
> > > > Â
> > > > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > > Â
> > > > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
> > > > Â
> > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > > Â
> > > > Regards
> > > > TK
> > > >
> > > > From: himykabibble <jagboy@>
> > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > >
> > > >
> > > > Â
> > > > Tom,
> > > >
> > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Brad/Ray,
> > > > > ÂÂ
> > > > > That shouldn't be necessary.  The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > > ÂÂ
> > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > > ÂÂ
> > > > > It should already point to the root directory where KMotionDLL is located. If not, remove whatever changed it.
> > > > > ÂÂ
> > > > > Regards
> > > > > TK
> > > > > ÂÂ
> > > > >
> > > > > From: Brad Murry <bradodarb@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÂÂ
> > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > > ÂÂ
> > > > > Set this::
> > > > >     _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > > ÂÂ
> > > > > ÂÂ
> > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > > ÂÂ
> > > > > -Brad Murry
> > > > > ÂÂ
> > > > > From:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > ÂÂ
> > > > > ÂÂ
> > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > >
> > > > > > Brad,
> > > > > >
> > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > >
> > > > > > > Where are you getting your axis values?
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > >
> > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > >
> > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > You use colorful language Ray,
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So here is what I observe::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬" release as I thought, just a straight shot.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I am seeing around 15ms round trip.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > >
> > > > > > > > while (true)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Reset();
> > > > > > > >
> > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > >
> > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > >
> > > > > > > > {
> > > > > > > >
> > > > > > > > sw.Start();
> > > > > > > >
> > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > >
> > > > > > > > sw.Stop();
> > > > > > > >
> > > > > > > > _Controller.ReleaseToken();
> > > > > > > >
> > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > > Thread.Sleep(100);
> > > > > > > >
> > > > > > > > }
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > I get the 218ms off the batÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > >
> > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > -Brad Murry
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > >
> > > > > > > > > Tom,
> > > > > > > > >
> > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > >
> > > > > > > > > > Hi Ray,
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ After the disconnect when you are getting the long delays.ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Is theÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ MainStatus data correct and current?
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Regards
> > > > > > > > > > TKÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > >
> > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > >
> > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > >
> > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > >
> > > > > > > > > > Any ideas?
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ThisÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ involves:
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > Regards.
> > > > > > > > > > > TK
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡
> > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so long? I'm
> > > > > going to try
> > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > >
> > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > >
> > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > >
> > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬
> > > > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å ¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€Å ¡Ã‚¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'
> > > > Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'† 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'† 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'† 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>
Group: DynoMotion Message: 3334 From: himykabibble Date: 1/22/2012
Subject: Re: Twiddling Bits in dotNet
Brad,

Yes, that problem is resolved. I didn't know the axis parameter needed to be programmed into three different places. Wouldn't it make sense to have a high level API that would allow them all to be set at one time?

BTW - I copied that code from the v428 dotNet example, so that needs to be updated.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Brad Murry <bradodarb@...> wrote:
>
> “I think it is something in dotNet that is broken,”
>
>
>
> Not the case here, Ray. Did you use my directions?
>
>
>
> -Brad
>
>
>
> From: DynoMotion@yahoogroups.com [mailto:DynoMotion@yahoogroups.com] On Behalf Of himykabibble
> Sent: Sunday, January 22, 2012 5:06 PM
> To: DynoMotion@yahoogroups.com
> Subject: [DynoMotion] Re: Twiddling Bits in dotNet
>
>
>
>
>
> Tom,
>
> Sounds logical, but there is only one instance, and when I set a breakpoint in the init routine, they are getting correctly set. When I set a breakpoint in the method that gets the axis positions, and in the InterpreterDone callback, they are also correct in the KM_Controller object. But, the positions/counts are wrong, so I think it is something in dotNet that is broken, and not passing them along to the interpreter.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> >
> > 100 is the default value. So either they are not really being set or they are bein set in a different instance.
> > Â
> > TK
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > Sent: Sunday, January 22, 2012 3:27 PM
> > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> >
> >
> > Â
> > Well..... OK, not entirely OK. The axis scaling is whacked. It is acting as if all axes are set to 100 counts/inch, even though I've set them to MUCH larger values. There must be some init I'm not doing properly?
> >
> > Regards,
> > Ray L.
> >
> > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > >
> > > The good news is, except for the path issues, I now have the interpreter hooked in and it seems to be working just fine.
> > >
> > > Regards,
> > > Ray L.
> > >
> > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > >
> > > > Tom,
> > > >
> > > > It seems to only accept files that are in "\KMotion428\GCode Programs". As long as the path I pass in points to that directory, it's happy, and works fine. ANY other path, and it throws the exception. How can that affect where it looks for the config file??
> > > >
> > > > Regards,
> > > > Ray L.
> > > >
> > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > >
> > > > > Hi Ray,
> > > > > ÂÂ
> > > > > No. When the Interpreter decides to initialize itself it reads in the EMC parameter variables from a file called emc.var which it expects to find within the <MainPathRoot>\GCode Programs directory. It had already determined the directory KMotionDLL was located in and saved it into MainPathRoot.
> > > > > ÂÂ
> > > > > It has nothing to do with the file you are trying to execute. It is complaining because it can't find its internal files in the expected places. Or I guess more specifically MainPathRoot is somehow invalid.
> > > > > ÂÂ
> > > > > I'd rather find out how it is becoming invalid rather re-set it to the right value (which then wont work on the next version).
> > > > > ÂÂ
> > > > > Regards
> > > > > TK
> > > > >
> > > > > From: himykabibble <jagboy@>
> > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > Sent: Sunday, January 22, 2012 2:29 PM
> > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > >
> > > > >
> > > > > ÂÂ
> > > > > Tom,
> > > > >
> > > > > I don't understand. Are you saying all the G-code files have to be located below the KMotion directory?
> > > > >
> > > > > Regards,
> > > > > Ray L.
> > > > >
> > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > >
> > > > > > Brad/Ray,
> > > > > > ÃÆ'‚ÂÂ
> > > > > > That shouldn't be necessary.ÃÆ'‚ÂÂ ÃÆ'‚ÂÂ The KMotionDLL figures out where it is located automatically and as long as you have a standard Dynomotion installation everything should work fine.
> > > > > > ÃÆ'‚ÂÂ
> > > > > > If you override that externally I think it can cause a number of problems unless you know what you are doing.
> > > > > > ÃÆ'‚ÂÂ
> > > > > > It should already point to the root directory where KMotionDLL is located.ÃÆ'‚ÂÂ If not, remove whatever changed it.
> > > > > > ÃÆ'‚ÂÂ
> > > > > > Regards
> > > > > > TK
> > > > > > ÃÆ'‚ÂÂ
> > > > > >
> > > > > > From: Brad Murry <bradodarb@>
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Sent: Sunday, January 22, 2012 2:01 PM
> > > > > > Subject: RE: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > >
> > > > > >
> > > > > > ÃÆ'‚ÂÂ
> > > > > > There are some hard coded path in the DynoMotion APIs that you need to follow.
> > > > > > ÃÆ'‚ÂÂ
> > > > > > Set this::
> > > > > > ÃÆ'‚ÂÂ ÃÆ'‚ÂÂ ÃÆ'‚ÂÂ ÃÆ'‚ÂÂ _Controller.Interpreter.MainPathRoot =_Data.ConfigDirectory;
> > > > > > ÃÆ'‚ÂÂ
> > > > > > ÃÆ'‚ÂÂ
> > > > > > Where _Data.ConfigDirectory is your Dynomotion install root(ex- c:\KMotion428)
> > > > > > ÃÆ'‚ÂÂ
> > > > > > -Brad Murry
> > > > > > ÃÆ'‚ÂÂ
> > > > > > From:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > Sent: Sunday, January 22, 2012 2:51 PM
> > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > ÃÆ'‚ÂÂ
> > > > > > ÃÆ'‚ÂÂ
> > > > > > The interpreter is laughing at me now as well. If I load a file, then call the interpreter, all is sorta-kinda OK. It runs, if not entirely correctly. But, when I do an MDI, it throws an exception that it can't access the file, even though I've verified I am passing the correct path and the file is there and readable. The error dialog indicates it is unable to open a filepath that is about 100 accented i's followed by "\GCode Programs\emc.var". But the path I'm passing in is "C:\Temp\MDICommand.nc", so where is it pulling that other path from? This is rather hard to understand, as both G-code execution and MDI are invoking the interpreter through the same function calls.
> > > > > >
> > > > > > Regards,
> > > > > > Ray L.
> > > > > >
> > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > >
> > > > > > > Brad,
> > > > > > >
> > > > > > > Right now, I'm getting them from MainStatus.GetDestination. Getting them from the Interpreter gives the same result.
> > > > > > >
> > > > > > > Regards,
> > > > > > > Ray L.
> > > > > > >
> > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > >
> > > > > > > > Where are you getting your axis values?
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > Sent: Sunday, January 22, 2012 2:27 PM
> > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > Brad,
> > > > > > > >
> > > > > > > > I have no clue how that code came out formatted like that! Very odd....
> > > > > > > >
> > > > > > > > Glad to see you can reproduce the problem. I've moved on to bringing up the interpreter for now. Let me know when you have something to try out on this problem.
> > > > > > > >
> > > > > > > > For some reason, the interpreter is running the code, but I'm getting bogus position back - they're all exactly 100X what they should be. If I do G0 X1.000, it does the move, and stops at X=100.000.
> > > > > > > >
> > > > > > > > Regards,
> > > > > > > > Ray L.
> > > > > > > >
> > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > >
> > > > > > > > > You use colorful language Ray,
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So here is what I observe::
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > #1 UpdateMainStatus() is not performing the lock - get data ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬" release as I thought, just a straight shot.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I am using a System.Diagnostics.Stopwatch for accurate measurements and in this code::
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Stopwatch sw = new Stopwatch();
> > > > > > > > >
> > > > > > > > > while (true)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Reset();
> > > > > > > > >
> > > > > > > > > sw.Start();
> > > > > > > > >
> > > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > sw.Stop();
> > > > > > > > >
> > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > > >
> > > > > > > > > Thread.Sleep(100);
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I am seeing around 15ms round trip.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Once I unplug and then plug back in the USB, it goes to about 218ms per cycle.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > Interestingly enough, if I surround the UpdateMainStatus() in a lock check like so::
> > > > > > > > >
> > > > > > > > > while (true)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Reset();
> > > > > > > > >
> > > > > > > > > var result = _Controller.WaitToken(100);
> > > > > > > > >
> > > > > > > > > if (result == KMOTION_TOKEN.KMOTION_LOCKED)
> > > > > > > > >
> > > > > > > > > {
> > > > > > > > >
> > > > > > > > > sw.Start();
> > > > > > > > >
> > > > > > > > > _Controller.UpdateMainStatus();
> > > > > > > > >
> > > > > > > > > sw.Stop();
> > > > > > > > >
> > > > > > > > > _Controller.ReleaseToken();
> > > > > > > > >
> > > > > > > > > Console.WriteLine(String.Format("Time to update Main_Status == {0}", sw.ElapsedMilliseconds));
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > > Thread.Sleep(100);
> > > > > > > > >
> > > > > > > > > }
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > I get the 218ms off the batÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So <ms in your initial observations was probably a combination of not locking the kflop and the calculation method not being accurate here is a good article on why you should use a stopwatch::
> > > > > > > > >
> > > > > > > > > http://www.blackrabbitcoder.net/archive/2012/01/12/c.net-little-pitfalls-stopwatch-ticks-are-not-timespan-ticks.aspx
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > So we now have consistency, I will look into optimizing the update status. Tom, can you see if I am doing something daft in the interop lib?
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > -Brad Murry
> > > > > > > > >
> > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > Sent: Sunday, January 22, 2012 1:48 PM
> > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > It seems to me this pretty much has to be something wrong in libraries. I just commented out my entire update loop, except for the one call to UpdateMainStatus(), and the problem is still there. So there is NO other communication between my app and the libraries other than that one call. Have you guys tried doing a disconnect/reconnect? The MainStatus BitState calls are always fast (which makes sense, since they should not need to access the hardware).
> > > > > > > > >
> > > > > > > > > Regards,
> > > > > > > > > Ray L.
> > > > > > > > >
> > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > >
> > > > > > > > > > Tom,
> > > > > > > > > >
> > > > > > > > > > Yes, after the re-connect, everything works, just very, very slowly. Normally when I click on one of the buttons with indicator LEDs, the LED lights change state instantly. After a dis-connect/re-connect, there's probably a 2 second delay.
> > > > > > > > > >
> > > > > > > > > > Regards,
> > > > > > > > > > Ray L.
> > > > > > > > > >
> > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hi Ray,
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > Sounds like maybe something is getting blocked and eventually timing out after 100ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ After the disconnect when you are getting the long delays.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ Is theÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ MainStatus data correct and current?
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > Regards
> > > > > > > > > > > TKÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > >
> > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > Sent: Sunday, January 22, 2012 12:21 PM
> > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > Tom,
> > > > > > > > > > >
> > > > > > > > > > > That is consistent with what I see IF I don't do a disconnect/reconnect. It typically returns in under 1mSec. But, after a re-connect, the time jumps to 200mSec+. I've just tried tossing the whole KM_Controller on a disconnect, and starting fresh with a new one, and it makes no difference at all, so I'm at a loss to understand where to go from here. I don't see how my app could be at fault, since the code I'm using to do the measurement does not involve any of my code:
> > > > > > > > > > >
> > > > > > > > > > > DateTime start = DateTime.Now;
> > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > DateTime end = DateTime.Now;
> > > > > > > > > > > TimeSpan delta = end - start;
> > > > > > > > > > > Debug.WriteLine(start + " " + end + "=" + delta + "\n");
> > > > > > > > > > >
> > > > > > > > > > > Without the disconnect/reconnect, all is fine.
> > > > > > > > > > >
> > > > > > > > > > > Any ideas?
> > > > > > > > > > >
> > > > > > > > > > > Regards,
> > > > > > > > > > > Ray L.
> > > > > > > > > > >
> > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > No it shouldn't take that long.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > These are rough numbers but my experience has been the overhead of a round trip command/response to KFLOP takes ~2ms.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ ThisÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ involves:
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > User App -> KMotionDLL pipe -> KMotionServer -> USB Driver -> Windows -> USB -> KFLOP -> USB -> Windows -> USB Driver -> KMotionServer -> KMotionDLL pipe -> User App
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > And then the data transfers at ~ 400KByes per second.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > I think the MainStatus record is around 300 bytes.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > So you should be able to read the Main Status record in a couple of milliseconds which is not much longer than reading a single IO bit.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > Of course these are typical times.ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ Worst case might be seconds depending on Windows.
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > Regards.
> > > > > > > > > > > > TK
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:43 AM
> > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡
> > > > > > > > > > > > I've found and fixed one recursion bug, and I'm now down to what appears may be a dotNet performance issue. My 100mSec display timer handler makes a call to UpdateMainStatus(), then uses the dotNet MainStatus functions to read status of a number of pins, and other things, to update the display. The UpdateMainStatus() call appears to be taking quite some time to execute, and is what is slowing things down for me. It also appears to be even slower after a disconnect and reconnect, and I'm not 100% certain yet, but the slowness seems to persists across multiple invocations of my app, if I don't reset the board. If I comment out the call, and simply return default values for all the MainStatus calls, the performance returns to what I would expect. This makes sense, since it was yesterday when I plumbed in the MainStatus as my primary feedback mechanism that things kinda went off the rails. Does this make sense? Should it be taking so
> > long? I'm
> > > > > > going to try
> > > > > > > > > > > > to time the calls, and see what we're dealing with.
> > > > > > > > > > > >
> > > > > > > > > > > > At least the crashes are now gone!
> > > > > > > > > > > >
> > > > > > > > > > > > Regards,
> > > > > > > > > > > > Ray L.
> > > > > > > > > > > >
> > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > This does not, however, have anything to do with the slow-down after a re-connect. On re-connect, I'm doing nothing but re-loading my Init code, using:
> > > > > > > > > > > > >
> > > > > > > > > > > > > // Re-connected, so download our init.c
> > > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > > String TheCFile = @"C:\My KFlop C Programs\KMotionCNC\KMotionCNCInit.c";
> > > > > > > > > > > > > KMController.CompileAndLoadCoff(1, TheCFile, true);
> > > > > > > > > > > > > KMController.WriteLine("Execute1");
> > > > > > > > > > > > > Thread.Sleep(1000);
> > > > > > > > > > > > >
> > > > > > > > > > > > > Is there something more I should be doing, or something wrong with this code? It works perfectly on the first connect event.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > >
> > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > OK, I've figured out what's causing the crash, just need to figure out why.... If I disable my WCF server, the crash does not occur, so I'm doing something wrong in handling that thread. Odd that it would affect KMotion, since it has nothing to do with KMotion - it's just providing a simple tcp port server for the toolpath display.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Oops! That is what was happening. I made an ill-conceived change in the process of trying to debug this that had an unanticipated side-effect of doing exactly that. So, that one is stomped. Thanks!
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > It happens one time, in the form constructor....
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > It likely you are attaching your handler multiple times.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 11:17 AM
> > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Crikey! The further I get into this, the less sense it makes! After I "disable" the BlinkTimer by means of the Stop() method, I continue to get the Tick events! When I look into the underlying Timer, it shows Enabled=false. Even if I un-link my event handler (i.e. Timer.Tick -= BlinkTimerTick), the events STILL keep coming! How is this possible???
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > I have one reference to the dotNet dll, and it is the release version.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Ray,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > I was referring to using the Release version instead of the Debug with respect to your KMotion references.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 10:51 AM
> > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Everything I'm using is from v428. It's the only version I have on my machine.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Tom/Ray
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > If you look at the dispose callbacks in the .net library, I am calling Free on each of the objects. By freeing the memory of the c++ objects, is this causing an issue?
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > The other thing to look out for Ray is making sure you are using the same versions of KMotion.dll, etcÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬
> > > > >
> > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚
> > ¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚Â
> > ¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'
> > > > > Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â¦ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦. in your app as KMotion.exe is.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > This means you should only be using the files in the KMotion4xx\Kmotion\Release folder
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On Behalf Of TK
> > > > > > > > > > > > > > > > > > > > Sent: Sunday, January 22, 2012 9:51 AM
> > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > Subject: Re: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Well I guess I didn't ask the right question. Is everything terminated in a clean manner so no interactions with KMotion are left incomplete. Killing a thread might cause a problem. Better to signal the thread to terminate itself.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > On Jan 21, 2012, at 10:15 PM, "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Nope, I'm stopping all timers, and killing all threads I've created.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Tom,
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > I believe so, but I'll make a second run through and check.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > This is *really* close to working....
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Tom Kerekes <tk@> wrote:
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Hi Ray,
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬
> > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚Â
> > ¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > > Are you terminating all your Timers and Threads that might be accessing the board before closing?
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬
> > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚Â
> > ¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > > Regards
> > > > > > > > > > > > > > > > > > > > > > TK
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > From: himykabibble <jagboy@>
> > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Re: Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬
> > 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚ 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Â 'ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'‚ÃÆ'‚Â
> > ¢ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'‚ÃÆ'‚¬ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¦ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'â€Â 'ÃÆ'Æ'Æ'ÃÆ'‚¢ÃÆ'Æ'¢ÃÆ'¢â‚¬Å¡ÃÆ'‚¬ÃÆ'Æ'…ÃÆ'‚¡ÃÆ'Æ'Æ'ÃÆ'†'ÃÆ'Æ'¢ÃÆ'¢â€šÂ¬ÃÆ'…¡ÃÆ'Æ'Æ'ÃÆ'¢â‚¬Å¡ÃÆ'Æ'‚ÃÆ'‚¡
> > > > > > > > > > > > > > > > > > > > > > Also, if I open my app, then open KMotion, then close my app, the board disconnects, and KMotion crashes. I am doing a Dispose on the KM_Controller in the FormClosing event handler. Is there something more I need to do to shutdown more gracefully?
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , "himykabibble" <jagboy@> wrote:
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Brad/Tom,
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > OK, at least I've got a work-around, so not a biggie.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > I am having another problem, related to disconnects. Using the combination of CheckIsReady() and Connected, I now seem to be reliably seeing connects and disconnects. At least I have yet to see it screw up. But, I'm finding that I can easily get things into a state where KMotion and/or dotNet appear to no longer work properly.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > If I have my app running, then disconnect the USB cable, the app correctly detects the disconnect. If I then re-connect the cable, the app correctly detects the reconnect, and the app mostly works properly. But, I can no longer control I/Os, and, at this point I can not even start up KMotion - it just hangs before putting anything up on the screen. Something in either KMotion or dotNet seems to be locking up.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Any idea where I should look?
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > --- In DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> , Brad Murry <bradodarb@> wrote:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > That is right Ray, the issue is with the MainStatus interop. Kevin pointed
> > > > > > > > > > > > > > > > > > > > > > > > it out a while back as well.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > I think I have it fixed, but I need to test and upload new source.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > -Brad Murry
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > From: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> [mailto:DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> ] On
> > > > > > > > > > > > > > > > > > > > > > > > Behalf Of himykabibble
> > > > > > > > > > > > > > > > > > > > > > > > Sent: Saturday, January 21, 2012 9:29 PM
> > > > > > > > > > > > > > > > > > > > > > > > To: DynoMotion@yahoogroups.com <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com> <mailto:DynoMotion%40yahoogroups.com>
> > > > > > > > > > > > > > > > > > > > > > > > Subject: [DynoMotion] Twiddling Bits in dotNet
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Brad,
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > You seem to have a fencepose error in the I/O handling in dotNet. I have two
> > > > > > > > > > > > > > > > > > > > > > > > buttons that control I/Os for Mist and Flood coolant, defined as follows:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("MistCoolant", new KM_IO(KMController, 3, "MistCoolant",
> > > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > > KMIO.Add("FloodCoolant", new KM_IO(KMController, 4, "FloodCoolant",
> > > > > > > > > > > > > > > > > > > > > > > > KMotion_dotNet.IO_TYPE.DIGITAL_OUT));
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Each button has an LED in it. The button click event handlers use the
> > > > > > > > > > > > > > > > > > > > > > > > following to set or clear the I/O bits:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > This much works properly, and the bits toggle as they should.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > My 100mSec status loop does the following to get current status
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.UpdateMainStatus();
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > I then have functions that return the current status of the coolant I/Os
> > > > > > > > > > > > > > > > > > > > > > > > using:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > These values are used to control the LEDs in the two buttons.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Here's the problem: I can correctly control the I/O pins. But, if I turn on
> > > > > > > > > > > > > > > > > > > > > > > > the Mist, the Mist status comes back as false, and the Flood status comes
> > > > > > > > > > > > > > > > > > > > > > > > back as true. To get the correct status back, I have to do the following:
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["MistCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > > KMController.MainStatus.GetBitsState(KMIO["FloodCoolant"].ID+1);
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > > > Regards,
> > > > > > > > > > > > > > > > > > > > > > > > Ray L.
> > > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > > >
> > > > > > > > > > > > > > >
> > > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> >
>